赞
踩
如果你想为某个 Git 仓库设置不同的用户名和邮箱,可以在该仓库的根目录下执行以下命令:
git config user.name "your_username"
git config user.email "your_email"
这样就可以为该仓库设置不同的用户名和邮箱了。如果你想查看该仓库的用户名和邮箱,可以使用以下命令:
git config user.name
git config user.email
如果你想为所有 Git 仓库设置默认的用户名和邮箱,可以使用 --global
参数执行上述命令。例如:
git config --global user.name "your_username"
git config --global user.email "your_email"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。