File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Command Line Interface Guidelines (日本語訳)
2
+
3
+ [ cli-guidelines/cli-guidelines] ( https://github.com/cli-guidelines/cli-guidelines ) の日本語訳プロジェクトです。
4
+ 自由な貢献を受け付けています。
5
+
6
+ ## 翻訳の更新
7
+
8
+ [ Reactの公式ドキュメント等と同じ方式] ( https://zenn.dev/smikitky/articles/0d250f7367eda9#%E5%8E%9F%E6%96%87%E3%81%B8%E3%81%AE%E8%BF%BD%E5%BE%93 )
9
+ をとります。
10
+ 原文をマージし、コンフリクトした状態のままコミットします。
11
+ その後、新しい原文をもとに翻訳を行うことでコンフリクトの解消を行います。
12
+ 新しいパラグラフが追加されている場合はコンフリクトが発生しないため、翻訳漏れのないように注意してください。
13
+
14
+ ``` bash
15
+ git remote add upstream git@github.com:cli-guidelines/cli-guidelines.git
16
+ git fetch upstream
17
+ git merge upstream/main
18
+ git commit -am " Merge upstream with conflict"
19
+ # 翻訳を行う
20
+ git commit -am " ..."
21
+ ```
22
+
23
+ ---
24
+
1
25
# Command Line Interface Guidelines
2
26
3
27
An open-source guide to help you write better command-line programs, taking traditional UNIX principles and updating them for the modern day.
You can’t perform that action at this time.
0 commit comments