2017-06-21 53 views
0

最近我在學習Git.But有些問題,當我輸入一些命令。Git推-u原產大師。錯誤的用SSH

$ git push -u origin master 
ssh: connect to host gmail.com port 22: Connection timed out 
fatal: Could not read from remote repository. 

Please make sure you have the correct access rights 
and the repository exists. 

我不會發生什麼情況。我盡我所能搜索一些關於它的東西,但注意到有用。請,我很困惑。

+0

更普遍的問題:你是怎麼設置你的倉庫? – Pantoofle

+0

我已經關閉了我的防火牆。我使用Windows系統。 –

+2

什麼? '連接到主機gmail.com端口22'?你是否嘗試推送到gmail.com? – Marusyk

回答

1

的ssh:連接到主機gmail.com端口22:連接超時

正如你可以嘗試推到gmail.com錯誤信息見。
gmail.com - 不是我們所知的git存儲庫,所以您不能推送。

要添加遠程倉庫使用

git remote add <NAME> <PATH> 

或更改網址:

git remote set-url <NAME> <PATH> 
+0

謝謝!我找到了。我是一個新的愚蠢的傢伙。非常感謝。 –

+0

很高興能有幫助 – Marusyk