End.

Git对某个文件取消跟踪

git rm --cached readme1.txt
#删除readme1.txt的跟踪,并保留在本地。

git rm --f readme1.txt
#删除readme1.txt的跟踪,并且删除本地文件。
End.