标签:项目 邮箱 system 优先 use mail git sys 目录
配置提交时作者及邮箱>单独项目:在该项目的目录下执行git config user.name "test";git config user.email "test@test.com";
配置提交时作者及邮箱>当前用户:任意目录下执行git config --global user.name "test";git config --global user.email "test@test.com";
配置提交时作者及邮箱>所有用户:任意目录下执行git config --system user.name "test";git config --system user.email "test@test.com";
以上作用优先级是单独项目>当前用户>所有用户
标签:项目 邮箱 system 优先 use mail git sys 目录
原文地址:https://www.cnblogs.com/wjsffzb/p/10109708.html