2015年9月2日 星期三

Git - branch

下載遠端 branch
git clone -b BRANCH_NAME REMOTE_GIT_REPO_URL


下載遠端 branch 至本地指定目錄
git clone REMOTE_GIT_REPO_URL -b BRANCH_NAME DIR


新增本地 branch
git checkout -b BRANCH_NAME


上傳至遠端 branch
git push origin BRANCH_NAME

沒有留言: