Git Amend
Git commit --amend
commit --amend
は、最新のcommit
を変更するために使用されます。
staging環境
の変更と最新のcommit
を組み合わせて、新しいcommit
を作成します。
このcommit
は、最新のcommit
を完全に置き換えます。
Gitのコミットメッセージの修正
--amend
で出来る最も簡単な事は、commit
メッセージを変えることです。
README.md
を更新してcommit
しましょう。:
例
git commit -m "Adding plines to reddme"
[master 07c5bc5] Adding plines to reddme
1 file changed, 3 insertions(+), 1 deletion(-)
log
を確認してみましょう。:
例
git log --oneline
07c5bc5 (HEAD -> master) Adding plines to reddme
9a9add8 (origin/master) Added .gitignore
81912ba Corrected spelling error
3fdaa5b Merge pull request #1 from w3schools-test/update-readme
836e5bf (origin/update-readme, update-readme) Updated readme for GitHub Branches
daf4f7c (origin/html-skeleton, html-skeleton) Updated index.html with basic meta
facaeae (gh-page/master) Merge branch 'master' of https://github.com/w3schools-test/hello-world
e7de78f Updated index.html. Resized image
5a04b6f Updated README.md with a line about focus
d29d69f Updated README.md with a line about GitHub
e0b6038 merged with hello-world-images after fixing conflicts
1f1584e added new image
dfa79db updated index.html with emergency fix
0312c55 Added image to Hello World
09f4acd Updated index.html with a new line
221ec6e First release of Hello World!
commit
メッセージはスペルミスだらけです。恥ずかしい。amend
しましょう。:
例
git commit --amend -m "Added lines to README.md"
[master eaa69ce] Added lines to README.md
Date: Thu Apr 22 12:18:52 2021 +0200
1 file changed, 3 insertions(+), 1 deletion(-))
log
を再確認してみると、:
例
git log --oneline
eaa69ce (HEAD -> master) Added lines to README.md
9a9add8 (origin/master) Added .gitignore
81912ba Corrected spelling error
3fdaa5b Merge pull request #1 from w3schools-test/update-readme
836e5bf (origin/update-readme, update-readme) Updated readme for GitHub Branches
daf4f7c (origin/html-skeleton, html-skeleton) Updated index.html with basic meta
facaeae (gh-page/master) Merge branch 'master' of https://github.com/w3schools-test/hello-world
e7de78f Updated index.html. Resized image
5a04b6f Updated README.md with a line about focus
d29d69f Updated README.md with a line about GitHub
e0b6038 merged with hello-world-images after fixing conflicts
1f1584e added new image
dfa79db updated index.html with emergency fix
0312c55 Added image to Hello World
09f4acd Updated index.html with a new line
221ec6e First release of Hello World!
commit
が修正されたcommit
に置き換えられていることが分かります。
警告:リポジトリの
commit
履歴をいじるのは危険な場合があります。通常、このような変更を独自のローカルリポジトリに加えても問題ありません。しかし、特に他の人が作業している場合は、remote
リポジトリの履歴を書き換えるような変更は避けてください。
Git ファイルの修正
--amend
を使用してファイルを追加すると上記と同じように動作します。commitする前にstaging 環境
に追加するだけです。
プログラミング学習を加速させる
プログラミングをプロの講師に教えてもらいませんか。