在GitHub的情况下,我添加了一个名为upstream
的遥控器,用于使用以下方法将最新的更改提取到我的分叉仓库中:
git remote add upstream git@github.com:<original_author_name>/<productname>.git
在这里,git@github.com:<original_author_name>/<productname>.git
显示在我的github dashborad上,一旦我分叉了回购。
但是在Bitbucket的情况下,我总是看到我的分叉回购位置,但不是我从中分叉的原始来源。现在我怎样才能找到原始仓库的位置,我可以添加为远程 - 上游从最初的原始分支中提取最新的变化?
答案 0 :(得分:2)
只需这样添加:
git remote add upstream git@bitbucket.org:YOUR-PROJECT-NAME.git
查看此文章了解更多信息: https://blogs.atlassian.com/2013/07/git-upstreams-forks/
答案 1 :(得分:1)
答案 2 :(得分:-2)
git branch --set-upstream-to=origin/<branch name you are working in locally that matches the remote branch name>
git branch --set-upstream-to=origin/alui-git-feature1