几种情况:
增加了几个文件, 没有 add
, 不想保存文件, 怎么快速清除文件?
增加了 add
了文件, 不想保存文件, 怎样清理?
修改了文件, 没有 add
, 怎样清理?
修改了文件, 已经 add
, 怎样清理?
天蓬老师2017-04-24 09:13:08
git clean -f
( -d
새 디렉토리가 있는 경우 )git reset --hard
(또는 git reset
1번으로 돌아갑니다. )git checkout .
(또는 파일 이름으로 지정)git reset --hard
(또는 git reset
3번으로 돌아갑니다. )巴扎黑2017-04-24 09:13:08
git clean -f
git checkout -f
git checkout -f
또는 git checkout .
git checkout -f
으아악
git checkout -f
黄舟2017-04-24 09:13:08
git status -s | awk ' = "?" { print }' | xargs rm -v
git reset --hard
git reset --hard
git reset --hard