I started a git merge, but made local changes that I want to keep. I no longer want to merge, and instead continue to work on the local changes. How do I do this?
Found a tested solution for:
rm .git/MERGE*
rm .git/ORIG_HEAD
Might be a bit dangerous as you're basically directly interfering with git's internal working, so maybe back up your folder first :)