檢視跟蹤遠端分支的新分支

有三種方法可以建立一個跟蹤遠端分支 origin/feature 的新分支 feature

  • git checkout --track -b feature origin/feature,
  • git checkout -t origin/feature,
  • git checkout feature - 假設沒有本地 feature 分支,並且只有一個遙控器與 feature 分支。

要設定上游以跟蹤遠端分支 - 鍵入:

  • git branch --set-upstream-to=<remote>/<branch> <branch>
  • git branch -u <remote>/<branch> <branch>

哪裡:

  • <remote> 可以是:origindevelop 或者是使用者建立的,
  • <branch> 是使用者在遠端跟蹤的分支。

要驗證本地分支機構正在跟蹤哪些遠端分支:

  • git branch -vv