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 存储库和本地计算机上有 A、B、C、D 和 E 文件一样,我已经删除了 A、B 和 C,留下了 D 和 E。当我推送时,我只想看到 D 和 E存储库。请问我该怎么做。我也可以对 heroku 做同样的事情吗?
暂存所有更改,提交并推送。
git add -A git status git commit -m "Deleted A, B, C" git push