码迷,mamicode.com
首页 > 其他好文 > 详细

Git 如何放弃所有本地修改

时间:2019-08-23 10:42:55      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:恢复   提交   查看   历史   如何   sof   没有   res   git   

git checkout .  #本地所有的修改,没有提交的,都返回到原来的状态
git stash  #把所有没有提交的修改暂存到stash里面。可用git stash pop恢复。
git reset --hard HASH  #返回到某个节点,不保留修改。
git reset --soft HASH  #返回到某个节点,保留修改。
git log  #可以查看 git commit 的历史记录及其 HASH ID

Git 如何放弃所有本地修改

标签:恢复   提交   查看   历史   如何   sof   没有   res   git   

原文地址:https://www.cnblogs.com/chenjo/p/11398357.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!