GIT:从fork存储库创建分支

时间:2017-08-03 21:29:37

标签: git github gitlab

我分叉存储库并设置远程配置:

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

1 个答案:

答案 0 :(得分:0)

如果你跑:

git push -u <remote> <branch>

这将(a)将分支<branch>推送到远程<remote>,然后(b)之后,在该分支上运行git push将始终将其推送到<remote> 。我相信这可以回答你的问题。