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 <
The answer
git clean -d -f
was underrated (-d to remove directories). Thanks!