说我有这个:
origin git@github.com:org/repo.git (fetch)
出于通过ssh进行身份验证的目的,我想将用户名添加到网址中,所以我想将其更改为:
origin git@github.com-the1mills:org/repo.git (fetch)
但是,当我这样做时,我会丢失当前分支以及可能所有分支的跟踪信息。
是否可以在不丢失跟踪信息的情况下修改远程URL?
答案 0 :(得分:1)
您可以使用git remote set-url
仅更改遥控器的URL。
git remote set-url origin git@github.com-the1mills:org/repo.git