mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
git: add Japanese translation (#9774)
This commit is contained in:
parent
778badb13f
commit
59e9d3bae1
1 changed files with 29 additions and 0 deletions
29
pages.ja/common/git.md
Normal file
29
pages.ja/common/git.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
# git
|
||||
|
||||
> 分散型バージョン管理システム
|
||||
> いくつかのサブコマンドがあります。例えば `commit`, `add`, `branch`, `checkout`, `push`, などです。 これらには使用方法についての独自のドキュメントがあり、 `tldr git subcommand` で見ることができます。
|
||||
> 詳しくはこちら: <https://git-scm.com/>.
|
||||
|
||||
- Gitのバージョンを確認する:
|
||||
|
||||
`git --version`
|
||||
|
||||
- Git全体のヘルプを見る:
|
||||
|
||||
`git --help`
|
||||
|
||||
- Gitのサブコマンドのヘルプを見る (例えば `clone`, `add`, `push`, `log`, など):
|
||||
|
||||
`git help {{サブコマンド}}`
|
||||
|
||||
- Gitのサブコマンドを実行する:
|
||||
|
||||
`git {{サブコマンド}}`
|
||||
|
||||
- Gitのサブコマンドを、任意のリポジトリのルートパスを指定して実行する:
|
||||
|
||||
`git -C {{ディレクトリパス}} {{サブコマンド}}`
|
||||
|
||||
- Gitのサブコマンドを、指定された設定値で実行する:
|
||||
|
||||
`git -c '{{config.key}}={{値}}' {{サブコマンド}}`
|
Loading…
Add table
Reference in a new issue