cli-guidelines/cli-guidelinesの日本語訳プロジェクトです。 自由な貢献を受け付けています。
Reactの公式ドキュメント等と同じ方式 をとります。 原文をマージし、コンフリクトした状態のままコミットします。 その後、新しい原文をもとに翻訳を行うことでコンフリクトの解消を行います。 新しいパラグラフが追加されている場合はコンフリクトが発生しないため、翻訳漏れのないように注意してください。
git remote add upstream [email protected]:cli-guidelines/cli-guidelines.git
git fetch upstream
git merge upstream/main
git commit -am "Merge upstream with conflict"
# 翻訳を行う
git commit -am "..."
An open-source guide to help you write better command-line programs, taking traditional UNIX principles and updating them for the modern day.
This is the source code for the guide. To read it, go to clig.dev.
Join us on Discord if you want to discuss the guide, or just chat about CLI design.
The content of the guide lives in a single Markdown file, content/_index.md. The website is built using Hugo.
To run Hugo locally to see your changes, run:
$ brew install hugo
$ cd <path>/<to>/cli-guidelines/
$ hugo server
To view the site on an external mobile device, run:
hugo server --bind 0.0.0.0 --baseURL http://$(hostname -f):1313
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.