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

Git敏捷开发--reset和clean

时间:2020-04-18 18:36:15      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:dir   out   set   文件   pre   move   --   git reset   清除   

reset

丢弃本地所有修改,强行和上游分支保持一致

git reset --hard HEAD

若仅丢弃某个文件的改动,利用checkout

git checkout your_file

clean

清除未跟踪文件。reset和checkout命令只能丢弃已经在git index里的文件

清除新增的文件或者文件夹

删除未跟踪文件 -f 即 -file的意思

git clean -f

连同删除未跟踪文件夹 -fd 即-file dir的意思

git clean -fd

在编译阶段,有时需要保持repo clean,清理.gitignore里的文件,可以加 -x

git clean -xfd

-n参数可以输出哪些文件将要被删除

git clean -nf
# 输出: Would remove your_file

Git敏捷开发--reset和clean

标签:dir   out   set   文件   pre   move   --   git reset   清除   

原文地址:https://www.cnblogs.com/CocoML/p/12727288.html

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