Git 将所有内容推送到新的原点
我删除了以前的 git origin,并创建了一个新的。我做了 git add 。和 git 提交。但它会更新更改,我如何将所有内容推入新原点
I deleted my previous git origin, and created a new one. I did git add . and git commit. But it will update changes, how do i push everything into the new origin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
(适用于 git 1.8.4)
如果您想一次推送所有分支:
要推送所有标签:
(works with git 1.8.4)
If you want to push all branches at once:
To push all the tags:
嗯,我刚刚做了这个。我不确定你是否做了完全相同的事情,但我有不同的方法。
我在“newserver”上设置了一个裸存储库(使用 ssh)。我的笔记本电脑上有该存储库的完整克隆。
然后我做了:
Hmmmm I just did this. I am not sure if you did exactly the same but I had a different method.
I setup a bare repo on "newserver" (using ssh). Had the full clone of the repo on my laptop.
I then did:
git push new_remote_name 分支_name
git push new_remote_name branch_name