Answers for "git reset the reset"

3

undo git reset HEAD~1

# if you would like to move back the head by one position you could do:
git reset HEAD~

# if you want to move multiple positions at once e.g 3 times back type: 
git reset HEAD@{3}
Posted by: Guest on September-01-2020
7

git reset

git reset --soft HEAD~3
git commit
git push —force-with-lease origin
Posted by: Guest on June-23-2020

Browse Popular Code Answers by Language