无法找到https

时间:2017-03-23 16:54:44

标签: git

我试图将我的远程存储库连接到本地存储库。在终端而不是写" https",我不小心输了" hhtps"。有没有办法解决这个问题?

2 个答案:

答案 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

中编辑遥控器的网址