I have some local version of a some branch. It was pulled some time ago. Now I want to update that branch with a fresh updates. I call
git fetch;
git pull;
And I get a number of conflicts in my working directory!
Why this happens? Before pull my working directory was clean. No commits from my side. No divergence possible. And despite this I see conflicts.
Why this happens?
How can I fix it?