git:revert_or_amend_last_commit
Differences
This shows you the differences between two versions of the page.
git:revert_or_amend_last_commit [2018/03/01 09:28] – created peter | git:revert_or_amend_last_commit [2019/11/29 15:12] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== GIT - Revert or amend last commit ====== | ||
- | |||
- | Committed some changes, didn’t push them, and need to amend the commit: | ||
- | |||
- | <code git> | ||
- | git commit --amend -a -m " | ||
- | </ | ||
- | |||
- | |||
- | Committed some changes, pushed them, and need to amend the commit, do the revert operation instead, since someone might’ve already used your changes. | ||
- | |||
- | Committed some changes, didn’t push them, and need to undo the commit: | ||
- | |||
- | <code git> | ||
- | git reset --hard HEAD^ | ||
- | </ | ||
- | |||
- | This will just toss away the last commit completely. | ||
- | |||
- | |||
- | Committed some changes, pushed them, and need to undo the commit: | ||
- | |||
- | <code git> | ||
- | git revert HEAD | ||
- | </ | ||
- | |||
- | This will automatically create a new commit, reverting the changes from the previous | ||
- | |||
git/revert_or_amend_last_commit.1519896522.txt.gz · Last modified: 2020/07/15 09:30 (external edit)