git常用命令

修改本地仓库的用户名和邮箱:
git config --replace-all user.name "name"
git config --replace-all user.email "[email protected]"
查看自己的用户名和邮箱地址:
git config user.name
git config user.email

你可能感兴趣的:(git常用命令)