User Tools

Site Tools


git:revert_or_amend_last_commit

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

git:revert_or_amend_last_commit [2018/03/01 09:28] – created petergit: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 "Commit message" 
-</code> 
- 
- 
-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^ 
-</code> 
- 
-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 
-</code> 
- 
-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)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki