我試過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和密碼並再次。
此之前你做了一個'git的遠程添加原產https://開頭github.com/you_project_name.git'? –
是的,我做了'add'。 – musbach