(1)到公司gitlab地址上copy用來clone的地址git
git clone ***gitlab
(2)若是master不是主分支,就用checkout命令切換分支it
git checkout ***ast
(3)從主分支上新建本身的分支stream
git checkout -b mybranch推送
(4)將本身的分支推送到遠程倉庫copy
git push --set-upstream origin mybranchco