Created
February 25, 2017 11:06
-
-
Save hashmaparraylist/d3d78e9912243e8ec84a5c2e22b8e2cd to your computer and use it in GitHub Desktop.
重置本地修改的git命令
This file contains 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
# If you want to revert changes made to your working copy, do this: | |
git checkout . | |
# If you want to revert changes made to the index (i.e., that you have added), do this. Warning this will reset all of your unpushed commits to master!: | |
git reset | |
#If you want to revert a change that you have committed, do this: | |
git revert <commit 1> <commit 2> | |
# If you want to remove untracked files (e.g., new files, generated files): | |
git clean -f | |
# Or untracked directories (e.g., new or automatically generated directories): | |
git clean -fd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment