我可以完全换掉Github存储库吗?

时间:2014-10-20 23:22:44

标签: git github repository push

Github通过维基页面,问题,主演等丰富您的存储库。由于我重写了我的一个应用程序,我想从现在开始使用这个新的存储库,同时保留周围的东西。我考虑删除除主服务器之外的所有当前远程分支,并强制推送新存储库的主服务器。

这会从遥控器中删除旧的提交吗?我遇到过这个问题吗?

1 个答案:

答案 0 :(得分:1)

  

这会从遥控器中删除旧的提交吗?

主分支无法访问的任何其他提交(您正在推送)仍然存在:pushing master alone does not remove the other branches at the remote repo, even if you have removed them in your local repo

您还需要删除这些分支:

git push origin --delete branch

(假设' origin'是引用您的GitHub回购的远程名称)