在Git中衣厘,刪除也是一個修改操作窖梁。
我們實(shí)戰(zhàn)一下恐锣,先添加一個新文件test.txt到Git并且提交:
$ git add test.txt
$ git commit -m "add test.txt"
[master 94cdc44] add test.txt
1 file changed, 1 insertion(+)
create mode 100644 test.txt```
一般情況下,你通常直接在文件管理器中把沒用的文件刪了部念,或者用rm命令刪了:
$ rm test.txt```
這個時候弃酌,Git知道你刪除了文件,因此儡炼,工作區(qū)和版本庫就不一致了妓湘,git status
命令會立刻告訴你哪些文件被刪除了:
$ git status
# On branch master
# Changes not staged for commit:
# (use "git add/rm <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# deleted: test.txt
#
no changes added to commit (use "git add" and/or "git commit -a")```
現(xiàn)在你有兩個選擇
* 一是確實(shí)要從版本庫中刪除該文件,那就用命令git rm刪掉乌询,并且git commit:
$ git rm test.txt
rm 'test.txt'
$ git commit -m "remove test.txt"
[master d17efd8] remove test.txt
1 file changed, 1 deletion(-)
delete mode 100644 test.txt
現(xiàn)在榜贴,文件就從版本庫中被刪除了。```
- 二是刪錯了妹田,因?yàn)榘姹編炖镞€有呢唬党,所以可以很輕松地把誤刪的文件恢復(fù)到最新版本:
$ git checkout -- test.txt```
****
######*完美的小結(jié)
* 命令git rm用于刪除一個文件。如果一個文件已經(jīng)被提交到版本庫鬼佣,那么你永遠(yuǎn)不用擔(dān)心誤刪驶拱,但是要小心,你只能恢復(fù)文件到最新版本晶衷,你會丟失最近一次提交后你修改的內(nèi)容屯烦。
* git checkout其實(shí)是用版本庫里的版本替換工作區(qū)的版本坷随,無論工作區(qū)是修改還是刪除,都可以“一鍵還原”驻龟。
本文轉(zhuǎn)自:廖大神的官方網(wǎng)站
http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/0013758392816224cafd33c44b4451887cc941e6716805c000