Featured image of post Git定义全局用户名和邮箱

Git定义全局用户名和邮箱

git config --global user.name "test"
git config --global user.email test@test.com

注意: 定义的用户名和邮箱,可以在commit的记录查询到 如果不想泄露个人邮箱,可以尝试config为专用邮箱,使用GitHub的话,可以将设置中的 Keep my email addresses private 勾选上

Licensed under CC BY-NC-SA 4.0