Git配置提交时作者及邮箱
Posted wjsffzb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git配置提交时作者及邮箱相关的知识,希望对你有一定的参考价值。
配置提交时作者及邮箱>单独项目:在该项目的目录下执行git config user.name "test";git config user.email "[email protected]";
配置提交时作者及邮箱>当前用户:任意目录下执行git config --global user.name "test";git config --global user.email "[email protected]";
配置提交时作者及邮箱>所有用户:任意目录下执行git config --system user.name "test";git config --system user.email "[email protected]";
以上作用优先级是单独项目>当前用户>所有用户
以上是关于Git配置提交时作者及邮箱的主要内容,如果未能解决你的问题,请参考以下文章