2016-08-18 138 views
1

我在Git和GitHub上是絕對新的,我有以下問題想我的本地庫鏈接到GitHub的帳戶爲什麼我不能將這個遠程GitHub倉庫添加到我的本地GIT倉庫作爲遠程?

我做的:

[email protected] MINGW64 ~/Documents/WS_vari/version-control/recipes (master) 
$ git remote set-url origin https://github.com/AndreaNobili/recipes.git 
fatal: No such remote 'origin' 

其中https://github.com/AndreaNobili/recipes.git是所提供的HTTPS鏈接GitHub這個倉庫。

爲什麼我會得到這個錯誤信息?什麼意思沒有這樣的遠程'起源'?我該如何解決這個問題?

回答

7

您所使用的命令不是加入遠程但設置的現有的遠程的URL。你正在尋找的命令是

git remote add origin https://github.com/AndreaNobili/recipes.git 

set-url可以使用,如果你想改變一個URL或修復一個錯字:

# Note the typo in the URL: 
git remote add origin https://gmail.com/AndreaNobili/recipes.git 
# This command fixes the typo: 
git remote set-url origin https://github.com/AndreaNobili/recipes.git 
1

作爲一種推廣這個,你就可以使用

​​

此跟蹤主分支只有

git remote add --track different-oil origin github.com/AndreaNobili/recipes.git 

這跟蹤不同油分支

相關問題