0
我想用所使用的只有一個分支叫發展具體分支遠程Git
遠程分支這是正確的:
$ git remote add production [email protected]:mywebsite.git
$ git push production +development:refs/heads/development
我想用所使用的只有一個分支叫發展具體分支遠程Git
遠程分支這是正確的:
$ git remote add production [email protected]:mywebsite.git
$ git push production +development:refs/heads/development
你有一個當地的分支機構,要推到存儲在myserver.com:mywebsite.git
?
您已經添加了遙控器,但你需要到目前爲止做,因爲推而言是
$ git push production development
有裸露的回購上mywebsite.com。我想鏈接一個非主分支到這個回購。我正在尋找+ master的適當命令:refs/heads/master。 – user2462840