git config:更改git配置
# 检查git配置
# git config -l | grep user
# git config --list
# 查看用户名:
# git config user.name
# 查看邮箱:
# git config user.email
# 修改用户名:
# git config --global user.name 你的用户名
# 修改邮箱:
# git config --global user.email 你的邮箱
git config:更改git配置
# 检查git配置
# git config -l | grep user
# git config --list
# 查看用户名:
# git config user.name
# 查看邮箱:
# git config user.email
# 修改用户名:
# git config --global user.name 你的用户名
# 修改邮箱:
# git config --global user.email 你的邮箱