(08-31-2013, 04:47 AM)xoft Wrote: I accidentally committed a few AnvilStats upgrades onto the Projectiles branch and before I noticed, I pushed it. So I had to re-merge Projectiles into the master yet again. So enjoy the throwables in the master
If you accidentially commit to the wrong branch, and remember before you push, you can either switch to a new branch (git checkout -b newBranch) or Rebase with old branch (git rebase currentBranch)
Then roll back two commits (git reset --hard HEAD~2).