我尝试了git push -u origin master &
,我得到了问题Username for 'https://github.com':
。我输入我的github用户ID,但进程终止于:
MY_USER_ID: command not found.
[1]+ stopped git push -u origin master
=============解决方案===================
从
更新.git / config...
[remote "origin"]
url = https://github.com/YOURNAME/YOURPROJECT.git
...
到
...
[remote "origin"]
url = https://USERID:PASSWORD@github.com/YOURNAME/YOURPROJECT.git
...
行模式的另一个优点是,不必一次又一次输入USERID和PASSWORD。
答案 0 :(得分:1)
我也碰到了这个。我通过使用SSH编辑.git/config
来修复它,并避免使用HTTPS。
git@github.com:Nature-Okoo/my_project.git
希望这有帮助