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 add”。
如果我删除文件并提交会发生什么?我需要重用'git add。'吗?如何确保当我在 github 上推送到 master 时,已删除的文件不存在?
用于git rm删除文件并使 Git 识别删除。
git rm
git rm path/to/file git commit git push