Created
November 16, 2012 22:15
-
-
Save rlandas/4091376 to your computer and use it in GitHub Desktop.
GIT: Reset and delete all uncommitted files and pull the latest from the repository
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git reset --hard HEAD; | |
git clean -f -d; | |
git pull; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment