Answers for "reset unpushed commits"

4

get unpushed commits

git log origin/master..HEAD
Posted by: Guest on February-18-2020
0

git discard all unpushed commits

# Remove ALL commits up to commit hash.
# NB: Make sure these commits have not been pushed.

git reset --hard <commit hash number>
Posted by: Guest on May-19-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language