2017-07-09 52 views
1

我試過git push -u origin master &,我得到的問題Username for 'https://github.com':。我進入我的github用戶標識,但不是過程與終止:如何上傳項目到github的背景

MY_USER_ID: command not found. 

[1]+ stopped    git push -u origin master 

=============解決方案================= ==

更新的.git /配置從

... 
[remote "origin"] 
    url = https://github.com/YOURNAME/YOURPROJECT.git 
    ... 

... 
[remote "origin"] 
    url = https://USERID:[email protected]/YOURNAME/YOURPROJECT.git 
    ... 

在串聯模式另一個優點是人們不必再次輸入用戶ID和密碼並再次。

+0

此之前你做了一個'git的遠程添加原產https://開頭github.com/you_project_name.git'? –

+0

是的,我做了'add'。 – musbach

回答

1

我也碰到過這個。我通過使用SSH編輯.git/config來修復它,並避免使用HTTPS。

[email protected]:Nature-Okoo/my_project.git

希望這有助於

+0

對不起。我不確定它是否工作。在後臺工作什麼都不做。它的工作原理如果我在'.git/config'中沒有'&'和'https'。但我想在後臺運行它。 – musbach

+0

這種其他方法如何。嘗試再次編輯你的'.git/config'。並將您的'https:// github.com/you_project_name.git'更改爲'https:// * username * @ github.com/you_project_name.git'。記得保存它,也許做一個'git pull'來測試它。 –