mirror of https://github.com/CrimsonTome/tldr.git
1.2 KiB
1.2 KiB
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