Derek
0
Q:

git remove unpushed commit

git reset --soft HEAD~1
0
# Remove ALL commits up to commit hash.
# NB: Make sure these commits have not been pushed.

git reset --hard <commit hash number>
0
# Removes latest commit from the stash, KEEPS changes
git reset --soft HEAD~

# Removes latest commit from the stash, DELETES changes
git reset --hard HEAD~
1

New to Communities?

Join the community