How do I git pull -f
git
Solution
In addition to the other answers, I would also add a `git clean -fdx` to remove all untracked files and directories, to avoid potential issues with files being added in the remote repository, but also present in the current clone.
git clean -fdx
git fetch
git reset --hard origin/master
Problem
Where is ``` git pull --force ``` as in `rm -rf` and then `git clone` again from scratch? End result should be `git diff` returns nothing.