Shell/Bash: git revert last commit unpushed Example
Shell/Bash Example: This is the "git revert last commit unpushed" Example. compiled from many sources on the internet by SimpleTutorials.org
git revert last commit unpushed
git reset --soft HEAD~1
git discard all unpushed commits
# Remove ALL commits up to commit hash. # NB: Make sure these commits have not been pushed. git reset --hard
* Summary: This "git revert last commit unpushed" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!