Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我昨天开始使用 git。我发现我可以使用命令删除文件git rm。但这不是很复杂吗?当我使用 SVN 并在我的 Windows 资源管理器中删除一个文件时,我只需提交更改,该文件将在存储库中删除。git有类似的解决方案吗?你如何处理 git?有什么我可以使用的工具吗?我已经下载了 git 扩展,但我最终使用了命令行。
git rm
感谢您的回答
菲洛
使用命令行,键入git commit -a,这也将提交已删除的文件!
git commit -a
您还可以使用暂存所有更改、删除或添加的文件(尊重忽略规则)
git add -A :/
然后检查将提交的内容
git status
然后提交
git commit