gitlab first step of development projects

(1) to copy the address to clone gitlab company address

git clone ***

 

(2) If the master is not a main branch, branch switching command to use checkout

git checkout ***

 

(3) their new branch from the main branch

git checkout -b mybranch

 

(4) will be pushed to their remote branch warehouse

git push --set-upstream origin mybranch

 

Guess you like

Origin www.cnblogs.com/ming-szu/p/11267986.html