2016-08-28 209 views
0

我在GitHub上更改了自己的名字並嘗試推送我的應用程序。 我試圖推後git添加和git提交,但它沒有奏效。 我刪除我的倉庫,現在我嘗試創建一個新的存儲庫,但混帳不知道我的新名字:如何更改路徑?

[email protected]:~/Projects/sample_app$ git remote add origin 
https://github.com/NyanTyrrell/sample_app.git 
fatal: remote origin already exists. 
[email protected]:~/Projects/sample_app$ git push -u origin master 
Username for 'https://github.com': NyanTyrrell 
Password for 'https://[email protected]': 
remote: Repository not found. 
fatal: repository 'https://github.com/newDartNyan/sample_app.git/' not found 

我怎樣才能改變從/ newDartNyan /(舊名)的路徑/ NyanTyrrell/(新名字)?

回答

0

使用remote命令的選項set-url

git remote set-url origin https://github.com/NyanTyrrell/sample_app.git 

這將遠程URL更改爲提供的值,在這種情況下https://github.com/NyanTyrrell/sample_app.git