How do I force an overwrite of local files on a git pull?
git pull
The scenario is the following:
I have a strange situation that neither git clean or git reset works. I have to remove the conflicting file from git index by using the following script on every untracked file:
git clean
git reset
git index
git rm [file]
Then I am able to pull just fine.