-
Notifications
You must be signed in to change notification settings - Fork 7
git回滚
wswenyue edited this page Oct 29, 2015
·
2 revisions
# 丢弃工作区的改动
$ git checkout -- <file>...
##修改之后,使用add添加到暂存区后,觉得修改都不要了,那么如何回滚:
$ git reset head 要回滚的文件
$ git checkout 要回滚的文件
$ git stash
# 恢复使用:
$ git stash pop