git checkout master
git checkout -b try-reset
Create a file named "reset1.md", put some text in it and save it.
git add reset.md
git commit -m "add reset1 file"
Create a file named "reset2.md", put some text in it and save it.
git add reset.md
git commit -m "add reset2 file"
Create a file named "reset3.md", put some text in it and save it.
git add reset.md
git commit -m "add reset3 file"
git lg
git reset --soft HEAD^
Or:
git reset --soft HEAD~1
Now run:
git lg
And:
git status
git commit -m "add reset3 file"
git reset HEAD~2
Now run:
git lg
And:
git status
git add reset2.md
git commit -m "add reset2 file"
git add reset3.md
git commit -m "add reset3 file"
git reset --hard HEAD^
Now run:
git lg
And:
git status
Donal asks: What happens if you do a git reset --hard
when there is an
untracked file?
The reflog shows all commits that were done against HEAD.
git reflog
Using the SHA value (you can also use the HEAD@{x}
value) move HEAD again to
recover the lost commit:
git reset --hard <SHA>