如何在后台将项目上传到github

时间:2017-07-09 21:04:21

标签: github

我尝试了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。

1 个答案:

答案 0 :(得分:1)

我也碰到了这个。我通过使用SSH编辑.git/config来修复它,并避免使用HTTPS。

git@github.com:Nature-Okoo/my_project.git

希望这有帮助