标签:zh-cn 下载 需要 级别 out str 错误 信息 概念
Use Git from the Windows Command Prompt
Check out Windows-style,commit Unix-style line endings
① 查看版本号,首先得安装成功才行,如果版本号显示,那么安装成功
git --version
建议和gitHub的用户名和邮箱保持一致
git config --global user.name "你的github用户名"
git config --global user.email "你的github邮箱"
git config --list 查看配置情况清单
① 增
git config --global --add configName configValue
② 删
git config --global --unset configName (只针对存在唯一值的情况)
③ 改
git config --global configName configValue (只针对唯一量)
④ 查
git config configName (查询实际生效的配置值)
git config --global configName (查询指定级别下,实际生效的配置值)
git config --get configName (查询实际生效的配置值)
//以上三种不能保证查询到所有的值,可能有未生效的
git config --list --global (查询指定级别下,所有的配置(包括不生效))
标签:zh-cn 下载 需要 级别 out str 错误 信息 概念
原文地址:https://www.cnblogs.com/lixiulin/p/8877212.html