重新命名遠端
要重新命名遠端,請使用命令 git remote rename
git remote rename
命令有兩個引數:
- 現有的遠端名稱,例如: origin
- 遠端的新名稱,例如: destination
獲取現有的遠端名稱
git remote
# origin
使用 URL 檢查現有遠端
git remote -v
# origin https://github.com/username/repo.git (fetch)
# origin https://github.com/usernam/repo.git (push)
重新命名遠端
git remote rename origin destination
# Change remote name from 'origin' to 'destination'
驗證新名稱
git remote -v
# destination https://github.com/username/repo.git (fetch)
# destination https://github.com/usernam/repo.git (push)
===可能的錯誤===
-
無法將配置部分’remote。[old name]‘重新命名為’remote。[new name]’
此錯誤表示你嘗試使用舊遠端名稱( 原始 )的遠端不存在。
-
遠端[新名稱]已存在。
錯誤訊息是自解釋的。