Answers for "git revert one commit"

0

git revert one commit

git reset --soft HEAD~1
Posted by: Guest on June-16-2021
5

git revert commit

# Reset the index and working tree to the desired tree
# Ensure you have no uncommitted changes that you want to keep
git reset --hard 56e05fced

# Move the branch pointer back to the previous HEAD
git reset --soft HEAD@{1}

git commit -m "Reverting to the state of the project at f414f31"
Posted by: Guest on April-28-2020
9

revert commit git

git revert <commit hash>
Posted by: Guest on September-23-2019
-1

how to undo commit

git reset <commitId>
# Exemple
git reset 5310517
Posted by: Guest on October-21-2020
-1

how to abandon changes and go last commit

#ignore all changes, and back to last commit 

git add .
git stash
Posted by: Guest on November-11-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language