你能帮我吗?我无法克隆Git存储库:
**我的命令**

§ git clone https://github.com/micaelandre/micaelandre.github.io.git

我可以看到这个错误:
Git输出
fatal error: https://github.com/micaelandre/micaelandre.github.io.git/info/refs not valid: is this a git repository?

最佳答案

您可以使用HTTPSSSH克隆存储库,您应该在本地和远程配置ssh以使用SSH

git clone https://github.com/micaelandre/micaelandre.github.io.git

或者如果启用ssh
git clone [email protected]:micaelandre/micaelandre.github.io.git

08-07 13:57