1.首先在git網頁上建立項目
2.将項目clone到本地,這裡選擇http
3.配置全局的name和email,參照你建立的工程Git global setup
git config --global user.name "bleakie"
git config --global user.email "[email protected]"
4.生成key
ssh-keygen -t rsa -C "[email protected]"
5.把id_rsa.pub裡的内容粘貼到gitlab密鑰中
6.上傳本地代碼
把要上傳的代碼拷貝在root下,然後分别在git裡面執行以下代碼:
與遠端分支相關聯:
git remote add origin https://github.com/yangxiaoyan20/BowlingScore.git
git init
git add *
git commit -m "init master"
與遠端分支相關聯(上面弄過了就不需要重複了):
git push origin master
上傳分支:
git remote add origin https://github.com/yangxiaoyan20/BowlingScore.git
完成!
git push origin test
- 備注,(删除test遠端分支):
git push origin :test
7.生成branch分支
建立branch:切換分支:
git branch test
按照上述步驟6上傳代碼到分支
git checkout test
8.删除遠端分支中的檔案
git rm -r –cached dirname //删除遠端檔案夾,但保留本地檔案夾
git commit -m ‘say something’ //送出操作,并添加描述
git push origin master //推送