2013-05-30 163 views

回答

0

假設您遠程命名爲原點

首先,創建你的分支將自動創建本地
git checkout -b branch-name origin/branch-name

遠程分支當你把它推到遠程服務器。所以當你感覺它,你可以做
git push origin branch-name

0

簡單地創建一個新的分支,而不檢查出來:

git branch newbranch existingbranch 

檢查出來,並開始工作,你則:

git checkout newbranch 

在一個步驟中完成上述兩種:

git checkout -b newbranch existingbranch