使用git checkout <name>,
如果沒有會以當下的分支 create出新的分支,
但是當要git push會跳出提示訊息:
fatal: The current branch <branchName> has no upstream branch.
其實只是將目前分支設定好他遠端對應好的分支,
使用此指令:
1 2 3 4 5 |
// 追蹤分支的意思 $ git push --set-upstream origin branchName // 取消追蹤分支,用到這個通常是遠端分支被刪除了! $ git branch --unset-upstream |