Whenever I try to push in Git I get this:
You have not concluded your merge (MERGE_HEAD exists).
Please, commit your changes before you can merge.
Running git status I get:
# On branch master
nothing to commit (working directory clean)
Or running git ls-files -u I get nothing.
Running git add .and trying again makes no difference.
What’s up?
Okay I finally found answer:
git commit -m "Test"apparently fixed this. The result was an empty commit with no changes whatsoever. Even Github shows an empty commit, but it works.