gpt4 book ai didi

Git 起源到 bitbucket

转载 作者:行者123 更新时间:2023-12-04 02:11:28 25 4
gpt4 key购买 nike

我有一个项目,我已经从公共(public)存储库克隆到我的 PC,我已经调整并推送到 Heroku。
我现在希望将调整后的代码推送到 BitBucket 作为备份。

$ git status
On branch master
Your branch is ahead of 'origin/master' by 13 commits.
(use "git push" to publish your local commits)

nothing to commit, working directory clean

$ git remote
heroku
origin

当我尝试添加 BitBucket 命令时出现以下错误:

fatal: remote origin already exists

也就是之后:

$ git remote add origin git@bitbucket.org:me/myproject.git
$ git push -u origin --all # pushes up the repo and its refs for the first time
$ git push origin --tags # pushes up any tags

我是否认为我只需要更新“origin”以指向 BitBucket 而不是原始存储库?

最佳答案

Would I correct in thinking I just have to update "origin" to point to BitBucket instead of the original repo?

作为备份,添加一个新的 Remote 会更清楚

git remote add bitbucket /url/to/your/bitbucket/repo
git push -u bitbucket --all

如果您真的想更改远程“origin”(因为“heroku”就足够了),那么应该是:

git remote set-url origin /url/to/your/bitbucket/repo

无需 git branch 命令,推送将为您创建 bitbucket 远程分支。

关于Git 起源到 bitbucket,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37696071/

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