记录一点点工作中常见的问题:
当我们正常开发的时候,在没有 commit 之前 可以使用
git checkout fileName
进行撤销
git restore fileName
进行文件撤销
如果已经commit的文件也可以使用
git restore --staged fileName
然后再使用
git restore fileName
这样就撤销了一次对文件的修改。
git 删除未提交的文件
git checkout . && git clean -xdf
发布时间:2021-03-03
记录一点点工作中常见的问题:
当我们正常开发的时候,在没有 commit 之前 可以使用
git checkout fileName
进行撤销
git restore fileName
进行文件撤销
如果已经commit的文件也可以使用
git restore --staged fileName
然后再使用
git restore fileName
这样就撤销了一次对文件的修改。
git 删除未提交的文件
git checkout . && git clean -xdf