Git\mingw64\bin\git.EXE ls-remote -h -t https://github.com/nhn/raphael.git
时间: 2024-01-27 09:13:14 浏览: 232
执行以下命令可以获取 https://github.com/nhn/raphael.git 仓库的所有标签:
```shell
Git\mingw64\bin\git.EXE ls-remote -h -t https://github.com/nhn/raphael.git
```
执行该命令时,可能会遇到fatal错误,可以尝试以下两种解决方案:
1. 执行以下命令,将http.sslBackend设置为openssl,http.sslCAInfo设置为证书路径:
```shell
git config --global http.sslBackend "openssl"
git config --global http.sslCAInfo "C:\Program Files\Git\mingw64\ssl\cert.pem"
```
2. 在执行命令时,添加-insecure选项:
```shell
Git\mingw64\bin\git.EXE -c http.sslVerify=false ls-remote -h -t https://github.com/nhn/raphael.git
```
相关问题
c:\program files\git\cmd\git.exe ls-remote -h -t https://github.com/nhn/raphael.git
这是一个 Git 命令,通过执行 b'c:\\program files\\git\\cmd\\git.exe ls-remote -h -t https://github.com/nhn/raphael.git',可以显示出 nhn/raphael 仓库在 GitHub 上的所有分支和标签信息。
阅读全文