生成&配置ssh key
因?yàn)橹耙呀?jīng)給github配置了ssh key,這里直接輸出已經(jīng)生成的ssh key
cat ~/.ssh/id_rsa.pub
-
生成ssh key
-
在gitlab上配置ssh key
測試ssh key是否配置成功
-
在gitlab上創(chuàng)建一個(gè)新項(xiàng)目hello-gitlab
-
將遠(yuǎn)程項(xiàng)目clone到本地
git clone http://210.41.215.17/wangxueli/hello-gitlab.git /*git clone 遠(yuǎn)程項(xiàng)目地址*/
- 修改本地文件再推送到遠(yuǎn)程項(xiàng)目
git status /*查看倉庫狀態(tài)*/
git add *** /*添加到***文件*/
git add . /*添加所有更代碼*/
git commit -m "注釋" /*注釋為添加描述,并且必須描述*/
git push /*推送到遠(yuǎn)程項(xiàng)目*/