我试图将我的远程存储库连接到本地存储库。在终端而不是写" https",我不小心输了" hhtps"。有没有办法解决这个问题?
答案 0 :(得分:2)
您可以使用git remote set-url
更改遥控器的网址。
# Create a remote with the wrong URL
git remote add origin hhtps://github.com/myusername/myapp.git
# Fix the URL
git remote set-url origin https://github.com/myusername/myapp.git
答案 1 :(得分:-1)
在.git / config
中编辑遥控器的网址