Git - Git教程 08:删除文件
删除文件
1 - 在 Git 中删除也是一个修改操作。一般情况下,你通常直接在文件管理器中把没用的文件删了,或者用 rm 命令
1 $ rm file1.txt
2 - git status 命令会立刻告诉你哪些文件被删除了
1 $ git status 2 On branch master 3 Changes not staged for commit: 4 (use "git add/rm <file>..." to update what will be committed) 5 (use "git checkout -- <file>..." to discard changes in working directory) 6 7 deleted: file1.txt 8 9 no changes added to commit (use "git add" and/or "git commit -a")
3 - 接下来就是确实要从版本库中删除该文件!那就用命令 git rm 并且 git commit
1 $ git rm file1.txt 2 rm 'file1.txt' 3 $ git commit -m "remove file1.txt" 4 [master 191aa7c] remove file1.txt 5 1 file changed, 0 insertions(+), 0 deletions(-) 6 delete mode 100644 file1.txt
4 - 这样文件就从版本库中被删除了。如果想要把误删的文件恢复到最新版本,按照预想一行命令即可
1 $ git checkout -- file1.txt 2 error: pathspec 'file1.txt' did not match any file(s) known to git.
你会发现并没有什么卵用!因为误删的文件能够恢复的前提是该文件没有从版本库中删除
git checkout 其实是用版本库里的版本替换工作区的版本,无论工作区是修改还是删除,都可以一键还原