1. 程式人生 > >git協同開發

git協同開發

當你從遠端倉庫克隆時,實際上Git自動把本地的master分支和遠端的master分支對應起來了,並且,遠端倉庫的預設名稱是origin

要檢視遠端庫的資訊,用git remote

[[email protected] oldboypython]# git remote
origin

git remote -v顯示更詳細的資訊: [[email protected] oldboypython]# git remote
-v origin [email protected]192.168.119.12:root/oldboypython.git (fetch) origin
[email protected]
192.168.119.12:root/oldboypython.git (push)

推送分支

推送分支,就是把該分支上的所有本地提交推送到遠端庫。推送時,要指定本地分支,這樣,Git就會把該分支推送到遠端庫對應的遠端分支上:

git push origin master