用户设置
设置用户的用户名及E-mail,在终端中设置:
git config --global user.name "username"
git config --global user.email "[email protected]"
设置完成可以通过git config --list
进行检查。
其中的--global
表示进行的全局设置。
也可以修改文件进行设置,文件为.gitconfig
。文件内容:
[user]
name = username
email = [email protected]
给每个项目设置不同的作者
在指定的项目中执行一下操作:
git config --local user.name "username"
git config --local user.email "[email protected]"
其他设置
更换编辑器
git config --global core.editor emacs # 更换为EMACS
设置缩写
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.st status
设置之后,只需输入git co
,就可以实现与输入git checkout
一样的效果。
还可以加入一些参数,例如如下的设置:
git config --global alias.l "log --oneline --graph"
即使用l
来代替log --oneline --graph
在配置文件中的内容:
[alias]
co = checkout
br = branch
st = status
l = log --oneline --graph
ls = log --graph --pretty=format:"%h <%an> %ar %s"
标签:git,name,--,global,笔记,Git,设置,config
From: https://www.cnblogs.com/Johnny-m/p/18504338