Git 将所有内容推送到新的原点

发布于 2024-12-07 10:46:13 字数 78 浏览 1 评论 0原文

我删除了以前的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

旧情勿念 2024-12-14 10:46:13

(适用于 git 1.8.4)

如果您想一次推送所有分支

git push <URL> --all

推送所有标签

git push <URL> --tags

(works with git 1.8.4)

If you want to push all branches at once:

git push <URL> --all

To push all the tags:

git push <URL> --tags
北凤男飞 2024-12-14 10:46:13
git remote add origin <address>
git push origin <branchname>
git remote add origin <address>
git push origin <branchname>
分开我的手 2024-12-14 10:46:13

嗯,我刚刚做了这个。我不确定你是否做了完全相同的事情,但我有不同的方法。

我在“newserver”上设置了一个裸存储库(使用 ssh)。我的笔记本电脑上有该存储库的完整克隆。

然后我做了:

git remote set-url origin "newservers url"
git push origin master

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 remote set-url origin "newservers url"
git push origin master
潦草背影 2024-12-14 10:46:13

git push new_remote_name 分支_name

git push new_remote_name branch_name

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文