1. 程式人生 > >Git關聯到新的遠端分支

Git關聯到新的遠端分支

1、如果你已經在遠端建立了一個分支,遠端分支地址:https://xxxxxxx/wangdong/helloworld.git 
2、從命令列建立一個新的倉庫,關聯到該遠端分支

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://xxxxxxx/wangdong/helloworld.git
git push -u origin master

3、如果本地的程式碼,沒有關聯任何遠端分支

git remote add origin https://xxxxxxx/wangdong/helloworld.git
git push -u origin master

4、如果原生代碼,已經關聯了遠端分支,則需要先解除關聯

git remote remove origin

5、解除後、重新關聯新的遠端分支,並將程式碼傳上去

$ git remote add origin https://dev.33.cn/wangdong/alioss-file.git
$ git push -u origin master