mirror of https://github.com/CrimsonTome/tldr.git
29 lines
1.0 KiB
Markdown
29 lines
1.0 KiB
Markdown
# git commit
|
|
|
|
> リポジトリにファイルをコミットします。
|
|
> 詳しくはこちら: <https://git-scm.com/docs/git-commit>
|
|
|
|
- メッセージと共に、ステージ済のファイルをリポジトリにコミットする:
|
|
|
|
`git commit --message "{{メッセージ}}"`
|
|
|
|
- ファイルから読みとったメッセージと共に、ステージ済のファイルをコミットする:
|
|
|
|
`git commit --file {{コミットメッセージが書かれたファイルへのパス}}`
|
|
|
|
- 変更されたファイルを全て自動的にステージし、メッセージと共にコミットする:
|
|
|
|
`git commit --all --message "{{メッセージ}}"`
|
|
|
|
- 今のステージ済の変更を最後のコミットに付け足し、コミットハッシュを変更する:
|
|
|
|
`git commit --amend`
|
|
|
|
- 特定のファイル(ステージ済)だけをコミットする:
|
|
|
|
`git commit {{ファイルパス1}} {{ファイルパス2}}`
|
|
|
|
- ステージ済のファイルが無くても、コミットを作る:
|
|
|
|
`git commit --message "{{メッセージ}}" --allow-empty`
|