- 添加/修改用户:git config --global user.name 'hurace'
- 添加/修改邮箱:git config --global user.email '1101037077@qq.com' #全局联系方式,可选
- 查看用户名:git config user.name
- 查看邮箱: git config user.email
- 查看git的全局信息: git config -l
- git config --global user.name 'hurace'
- git config --global user.email '1101037077@qq.com' #全局联系方式,可选
- 查看用户名:git config user.name
- 查看邮箱: git config user.email
- 修改用户名:git config --global user.name "hurace"
- 修改邮箱: git config --global user.email "1101037077@qq.com"