Skip to content

Instantly share code, notes, and snippets.

@hashmaparraylist
Created February 25, 2017 11:06
Show Gist options
  • Save hashmaparraylist/d3d78e9912243e8ec84a5c2e22b8e2cd to your computer and use it in GitHub Desktop.
Save hashmaparraylist/d3d78e9912243e8ec84a5c2e22b8e2cd to your computer and use it in GitHub Desktop.
重置本地修改的git命令
# 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