Reputation: 32331
I am using a git repository.
I accidentally merged my master
branch with another branch by doing:
git checkout master
git merge branch_245
But did not do any commit or push, so the merge is just present in my local repository.
Now I don't want to include the contents of branch_245 in my master. How can I undo my merge?
Upvotes: 0
Views: 52