I've run into a problem wherein i cannot "back out" of a branch which I've started merging.
- The branch is behind master
- By checking out the branch, there are several files left from my last branch (master) that have been committed, but appear to be uncommitted in the context of the current branch
Thus, running:
$ git checkout master
Leaves me with the error: error: Untracked working tree file 'a' would be overwritten by merge.
I've tried running commands such as "git checkout -- ." and "git reset --hard" in hopes that git would "forget" that i tried to merge this branch with master, or by some other magic, loosen up .
However, I appear to be permanantly stuck on this branch.