git 报错:运行 git config --global
时间: 2023-06-13 11:05:37 浏览: 319
Git报错:RPC failed; curl 18 transfer closed with outstanding read data remaining
如果你运行 `git config --global` 报错,可能是由于你没有指定具体的配置项。`git config --global` 命令用于设置全局 Git 配置项,但是它必须指定具体的配置项才能生效。
例如,如果你想设置 Git 的用户名,可以运行以下命令:
```
git config --global user.name "Your Name"
```
如果你想设置 Git 的邮箱地址,可以运行以下命令:
```
git config --global user.email "your-email@example.com"
```
你可以根据需要设置其他的 Git 配置项。如果你仍然遇到问题,请提供更多的错误信息和上下文,以便我们更好地帮助你解决问题。
阅读全文