Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

git remove unpushed commit

# Removes latest commit from the stash, KEEPS changes
git reset --soft HEAD~

# Removes latest commit from the stash, DELETES changes
git reset --hard HEAD~
 
PREVIOUS NEXT
Tagged: #git #remove #unpushed #commit
ADD COMMENT
Topic
Name
7+2 =