How do I reset my local branch to be just like the branch on the remote repository?
I did:
git reset --hard HEAD
But when I run a <
Use the commands below. These commands will remove all untracked files from local git too
git fetch origin git reset --hard origin/master git clean -d -f