當咱們須要刪除暫存區或分支上的文件, 同時工做區也不須要這個文件了, 可使用git
暫存區
分支
1 git rm file_path 2 git commit -m 'delete somefile' 3 git push
當咱們須要刪除暫存區或分支上的文件, 但本地又須要使用, 只是不但願這個文件被版本控制, 可使用版本控制
git rm --cached file_path git commit -m 'delete remote somefile' git push