2019-04-23

全栈课程6-3中步骤2:上传专案 中遇到的问题

第一个:在终端里运行 git remote add origin https://github.com/duoduosell/first_app.git 

提示:

fatal: 远程 origin 已经存在。

解决方法:输入 git remote rm origin回车后再运行git remote add origin https://github.com/duoduosell/first_app.git 

第二个:上面步骤后面输入了git push -u origin master

提示:Username for 'https://github.com': duduosell

Password for 'https://[email protected]': 

remote: Invalid username or password.

fatal: Authentication failed for 'https://github.com/duoduosell/first_app.git/'

解决方法:输入 git remote rm origin

输入git remote add origin [email protected]:duoduosell/first_app.git

(注意前面命令origin和/first_app.git之间内容与git remote add origin https://github.com/duoduosell/first_app.git 的区别


解决求助于:https://stackoverflow.com/questions/29297154/github-invalid-username-or-password

你可能感兴趣的:(2019-04-23)