I am working on a branch called Lion, I mistakenly done this:
git push origin lion:master
instead of
git push eng lion:master
Basically the second line is for pushing the lion branch to a staging heroku app but I mistakenly merge all my code to into origin master.
How can I revert than? I have about 200 commits in my branch.
Greg