配置用户名
git config --global user.name "Your Name"
配置邮箱:
git config --global user.email "email@example.com"
使用 --global 修饰后设置的全局的用户,如果设置单个项目的用户,可cd到项目根目录下,执行如下命令:
git config user.name "Your Name"
git config user.email "email@example.com"
可查看当前用户信息以及其他的一些信息:
git config --list
网友评论