gpt4 book ai didi

git - 如何将本地存储库上的 URL 从 GitLab 更改为 GitHub?

转载 作者:行者123 更新时间:2023-12-04 14:34:12 24 4
gpt4 key购买 nike

我在 GitLab 上有一个存储库,我也在 GitHub 上发布了它。
到目前为止,我使用的所有 Git 命令都在 GitLab 上进行了更改。但是,我希望在 GitHub 上进行这些提交。
我试过命令:

git remote set-url origin git@github.com:repo-url
有人可以建议我如何设置 URL 以便命令可以在 GitHub 而不是 GitLab 上运行吗?

最佳答案

如果你想同时使用 GitHub 和 GitLab:

git remote add github <your-github-url>  # create a remote for GitHub
git remote add gitlab <your-gitlab-url> # create another remote for GitLab
git push -u github <local_branch_name> # set the default upstream to GitHub

如果要将远程 URL 从 GitLab 更改为 GitHub :
git remote set-url origin <your-github-url>  # use GitHub as your (only) origin

另见 "How to change the URI (URL) for a remote Git repository?""What exactly does the “u” do? “git push -u origin master” vs “git push origin master” ”。

关于git - 如何将本地存储库上的 URL 从 GitLab 更改为 GitHub?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57555550/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com