2
我已經在GitHub上刪除了我的存儲庫並嘗試創建一個本地。如何更改我連接的當前存儲庫?
當我這樣做:remote show origin
結果是:
remote: Repository not found.
fatal: repository 'https://github.com/userName/repositoryName.git/' not found
我已經在GitHub上刪除了我的存儲庫並嘗試創建一個本地。如何更改我連接的當前存儲庫?
當我這樣做:remote show origin
結果是:
remote: Repository not found.
fatal: repository 'https://github.com/userName/repositoryName.git/' not found
如果你有一個新的遠程使用您可以更新由源遠程使用的URL。
git remote set-url origin <your new remote URL or path>
如果您沒有關聯的遠程,您可以簡單地刪除當前的遠程原點。
git remote rm origin
這樣做:
git config remote.origin.url <your new repository URL>
我建議你閱讀[混帳書節與遙控器的工作(https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes) –
@ NickTomlin謝謝你,我一定會看看。 – volna