Git Force Pull
- Solution
- get rid of local changes and reset it to origin master
git fetch origin master git reset --hard origin/master
- if you want to get rid of untracked files, you can use the following git command:
git clean -f -d
- Links
git fetch origin master
git reset --hard origin/master
git clean -f -d