标签:需要 使用 工作区 remote 文件 comm git file_path 版本
当我们需要删除暂存区
或分支
上的文件, 同时工作区也不需要这个文件了, 可以使用
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
标签:需要 使用 工作区 remote 文件 comm git file_path 版本
原文地址:https://www.cnblogs.com/qqhfeng/p/10841071.html