重命名远程
要重命名远程,请使用命令 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]’
此错误表示你尝试使用旧远程名称( 原始 )的远程不存在。
-
远程[新名称]已存在。
错误消息是自解释的。