git 几种情况的回滚
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 几种情况的回滚相关的知识,希望对你有一定的参考价值。
-
增加了几个文件, 没有
add
, 不想保存文件, 怎么快速清除文件? -
增加了
add
了文件, 不想保存文件, 怎样清理? -
修改了文件, 没有
add
, 怎样清理? -
修改了文件, 已经
add
, 怎样清理?
git clean -f
(-d
if you have new directory )git reset --hard
( orgit reset
then back to 1. )git checkout .
( or specify with file names )git reset --hard
( orgit reset
then back to 3. )
以上是关于git 几种情况的回滚的主要内容,如果未能解决你的问题,请参考以下文章