天天看點

Git如何克隆Gitlab?Git本地倉庫如何上傳Gitlab?

 首先確定本機已經安裝上Git,其次确認可以正常通路Gitlab伺服器

 環境:

  Git:Centos 7.x  192.168.126.138

  Gitlab: Centos7.x 192.168.126.137

 1:填寫Gitlabn倉庫資訊

  登陸到Gitlab伺服器位址,建立倉庫

Git如何克隆Gitlab?Git本地倉庫如何上傳Gitlab?

建立成功後會自動跳轉至該倉庫的頁面:

Git如何克隆Gitlab?Git本地倉庫如何上傳Gitlab?

上面紅色框内,是倉庫位址,我們嘗試把倉庫克隆到本地倉庫:

  Cloning into 'Accommate'...

  Username for 'http://192.168.126.137': root    #Gitlab  賬号

  Password for 'http://[email protected]':    #Gitlab  密碼

  warning: You appear to have cloned an empty repository.

将該Gitlab版本倉庫添加到本機的遠端清單中:

[root@localhost Accommate]# git remote add Accommate [email protected]:root/Accommate.git

[root@localhost Accommate]# git remote

Accommate

goodboys

origin

編寫一個新檔案:

将該檔案送出到本地的Git版本倉庫:

然後将本地的Git倉庫同步到遠端Git伺服器上(第一次請加上參數-u,代表關聯本地與遠端):

檢視下Web端的Accommate:

(上傳檔案前)

Git如何克隆Gitlab?Git本地倉庫如何上傳Gitlab?

(上傳檔案後)重新整理下web頁面:

Git如何克隆Gitlab?Git本地倉庫如何上傳Gitlab?

 檢視下是不是我們之前寫的内容:

Git如何克隆Gitlab?Git本地倉庫如何上傳Gitlab?

 注:如果上傳至Github,需要定義SSH-Key

繼續閱讀