我在GitHub上更改了我的名字并尝试推送我的应用程序。 我尝试在git add和git commit之后推送,但它没有用。 我删除了我的存储库,现在我尝试创建一个新的存储库,但是git不知道我的新名称:
dartnyan@PC:~/Projects/sample_app$ git remote add origin
https://github.com/NyanTyrrell/sample_app.git
fatal: remote origin already exists.
dartnyan@PC:~/Projects/sample_app$ git push -u origin master
Username for 'https://github.com': NyanTyrrell
Password for 'https://NyanTyrrell@github.com':
remote: Repository not found.
fatal: repository 'https://github.com/newDartNyan/sample_app.git/' not found
如何更改/ newDartNyan /(旧名称)到/ NyanTyrrell /(新名称)的路径?
答案 0 :(得分:0)
使用set-url
命令的remote
选项。
git remote set-url origin https://github.com/NyanTyrrell/sample_app.git
这会将远程URL更改为提供的值,在本例中为https://github.com/NyanTyrrell/sample_app.git
。