Git 移除檔案追蹤

將暫存區內容清空,所有新加入追蹤的檔案都不追蹤了:
    
git reset
    

把 file.txt 檔案從追蹤中移除:
    
git rm --cached file.txt  
    

留言