git命令
2019-06-15 本文已影响0人
让一切简单
用户名配置
1.查看用户名和邮箱地址
git config user.name
git config user.email
2.修改全局用户名和邮箱地址:
git config --global user.name "username"
git config --global user.email "email"
3.修改局部用户名和邮箱地址:
cd ~/you project
git config user.name "username"
git config user.email "email"