gpt4 book ai didi

git - 使用 Git 将远程 'origin' 更改为 'upstream'

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

我从原始来源的 upstream 克隆了一个 Git 存储库master repo 到我的本地机器。git remote -v返回:

origin  https://github.com/project.git (fetch)
origin https://github.com/project.git (push)
但我现在知道我需要 fork 这个 upstream master分支到我的个人 GitHub 帐户,克隆它,创建一个新分支,然后开始编码(这样我就不会直接对 upstream 存储库进行更改,而是对我自己的 fork origin 存储库进行更改)。我已经 fork 了 upstream master到我的 GitHub 个人资料,但不知道如何继续。我需要获取 git remote -v看起来像这样:
origin    https://github.com/myGitHubProfile/project.git (fetch)
origin https://github.com/myGitHubProfile/project.git (push)
upstream https://github.com/project.git (fetch)
upstream https://github.com/project.git (push)
鉴于我已经克隆了 upstream,我该如何做到这一点? master从原始来源,它已经设置为 origin ?

最佳答案

似乎您正在寻找:

git remote rename origin upstream
git remote add origin https://github.com/myGitHubProfile/project.git
给“老” origin远程一个新 upstream命名并添加名为 origin 的新远程.

关于git - 使用 Git 将远程 'origin' 更改为 'upstream',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65485779/

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