我为 Windows 安装了 Git,虽然我使用的是 shell 而不是 Windows 界面。
如果我做一个git init
,然后尝试做一个
git remote add origin git@github.com:someuser/testme.git
我收到以下错误
fatal: remote origin already exists.
所以我做一个
git remote -v
它返回以下内容
origin
upstream
所以它似乎在那里但没有设置 URL,我不明白为什么它在那里?
如果我做一个
git remote rm origin
它产生这个
error: Could not remove config section 'remote.origin'
它说它不能删除 remote.origin 配置部分;我检查了主目录下的 .gitconfig ,但什么也没看到。
无论如何,我可以通过使用来解决这个问题
git remote set-url origin git@github.com:someuser/testme.git
但是我很困惑,因为我以前使用过 Git,但这从未发生过。
这可能与适用于 Windows 的 Git 有关吗?