Does anybody know how to easily undo a git rebase?
The only way that comes to mind is to go at it manually:
git reset --hard origin/{branchName}
is the correct solution to reset all your local changes done by rebase.