Git: Reset local branch to make it the same as remote branch master
Feb 22, 2017 - by kurinchilamp / / Post Comment
Go to your local repository in bash
$ git fetch origin
$ git reset --hard origin/master
To clean and remove untracked files and directories
$ git clean -fdx
Continue Reading