I made quite few changes in my project (I was working on a remote branch and not the master), I committed them and created a pull request on BitBucket and merged the branch to master. I had forgotten to push my changes after the commit. Now, after trying switching the current branch to my remote branch and reverting to the commit before the merge, I managed to get all my changes back and back them up elsewhere in my system. What I want to do now is undo the bad merge that I did. Each time I click on the merge and select "Reverse commit", I get the following error message:
"error: Commit <commit_id> is a merge but no -m option was given.
fatal: revert failed"
I want to basically remove the merge and bring it to a state such that it doesn't say master(4 behind) anymore.
I am new to source control and I would appreciate it if anyone could help me out with this.
Instead of reversing the commit, you want to reset the target branch (master, it sounds like) to the commit before the merge. To do this in SourceTree, right click the commit before the merge, and choose "Reset to this commit". You probably want to do a hard reset, which will reset your working copy to that commit as well, but make sure you don't have any changes you want to keep, or you'll lose them.
Great! Thanks. That suggestion worked! :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is giving me pull when i try to reset commit any suggestions on this
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
"Reset to this commit" will work only for commits that are not pushed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is giving me pull when i try to reset commit any suggestions on this So how can we remove pull .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To make it work for pushed commits; after "Reset current branch to this commit" you have to Push with "Force Push" checkbox enabled - but be careful as this can have destructive behavior.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.