设置 git 提交信息
git 设置用户名邮箱:
对当前项目生效:
git config user.name 'your username'
git config user.email 'your email'
对全局生效,加上 --global:
git config --global user.name 'your username'
git config --global user.email 'your email'
对当前项目生效:
git config user.name 'your username'
git config user.email 'your email'
对全局生效,加上 --global:
git config --global user.name 'your username'
git config --global user.email 'your email'