Git

Git set upstream branch

2020-11-06  本文已影响0人  JaedenKil

Option 1

Normally we can set upstream branch while pushing:

// on master branch
git push -u origin master // with "-u"

or

// on master branch
git push --set-upstream origin master

In this way, we'll set a upstream branch for current local branch and push local commits to that upstream branch.

Option 2

Set upstream branch without pushing

// on master branch
git branch -u origin/master

or

// on master branch
git branch --set-upstream origin/master
上一篇下一篇

猜你喜欢

热点阅读