Skip to content

Instantly share code, notes, and snippets.

@adeluccar
Forked from carltondickson/gist:28a90ccfed2f6b697aba
Last active August 29, 2015 14:21
Show Gist options
  • Save adeluccar/74e0eb09d83f2fef4496 to your computer and use it in GitHub Desktop.
Save adeluccar/74e0eb09d83f2fef4496 to your computer and use it in GitHub Desktop.
# Credit to http://www.iarp.ca/hobby/computing/36-git-committed-and-pushed-to-the-incorrect-branch
# Ensure you're in the branch that you commited to by accident.
git checkout master
# Reset the branch back one commit.
git reset --soft HEAD^
# Stash the changes
git stash
# Checkout the branch it should be in
git checkout develop
# Apply the stash
git stash apply
# Commit the changes just as you did before, you will need to rewrite the message.
git commit.........
# Push the changes to our develop branch
git push origin develop
# Checkout the original branch
git checkout master
# Force push the commit deletion to the original branch.
git push --force origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment