How do I force an overwrite of local files on a git pull?
git pull
The scenario is the following:
I know of a much easier and less painful method:
$ git branch -m [branch_to_force_pull] tmp $ git fetch $ git checkout [branch_to_force_pull] $ git branch -D tmp
That's it!