我分叉存储库并设置远程配置:
git remote -v
origin https://github.com/myAccount/someRepo.git (fetch)
origin https://github.com/myAccount/someRepo.git (push)
upstream https://github.com/someAccount/someRepo.git (fetch)
upstream https://github.com/someAccount/someRepo.git (push)
但我想创建分支来自:
https://github.com/myAccount/someRepo.git
如果我在本地创建该分支然后推送分支,该分支是否仅转到origin
?
例如:
git checkout -b debug
git push -u origin debug
答案 0 :(得分:0)
如果你跑:
git push -u <remote> <branch>
这将(a)将分支<branch>
推送到远程<remote>
,然后(b)之后,在该分支上运行git push
将始终将其推送到<remote>
。我相信这可以回答你的问题。