mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-04 00:25:40 +03:00
git-commit: add Japanese translation (#10008)
* git-commit: add Japanese translation * git-commit: translate placeholders into Japanese
This commit is contained in:
parent
d669a72bc8
commit
12ebd86cad
32
pages.ja/common/git-commit.md
Normal file
32
pages.ja/common/git-commit.md
Normal file
@ -0,0 +1,32 @@
|
||||
# git commit
|
||||
|
||||
> リポジトリにファイルをコミットします。
|
||||
> 詳しくはこちら: <https://git-scm.com/docs/git-commit>.
|
||||
|
||||
- メッセージと共に、ステージ済のファイルをリポジトリにコミットする:
|
||||
|
||||
`git commit -m "{{メッセージ}}"`
|
||||
|
||||
- ファイルから読みとったメッセージと共に、ステージ済のファイルをコミットする:
|
||||
|
||||
`git commit --file {{コミットメッセージが書かれたファイルへのパス}}`
|
||||
|
||||
- 変更されたファイルを全て自動的にステージし、メッセージと共にコミットする:
|
||||
|
||||
`git commit -a -m "{{メッセージ}}"`
|
||||
|
||||
- ステージ済のファイルをコミットし、`~/.gitconfig`に設定したGPG鍵で署名する:
|
||||
|
||||
`git commit -S -m "{{メッセージ}}"`
|
||||
|
||||
- 今のステージ済の変更を最後のコミットに付け足し、コミットハッシュを変更する:
|
||||
|
||||
`git commit --amend`
|
||||
|
||||
- 特定のファイル(ステージ済)だけをコミットする:
|
||||
|
||||
`git commit {{ファイルパス1}} {{ファイルパス2}}`
|
||||
|
||||
- ステージ済のファイルが無くても、コミットを作る:
|
||||
|
||||
`git commit -m "{{メッセージ}}" --allow-empty`
|
Loading…
Reference in New Issue
Block a user