美文网首页
git config

git config

作者: 圼_2514 | 来源:发表于2018-08-09 09:39 被阅读0次

git config命令用来配置git

1.帮助信息

git config --help

2.所有本地配置

git config --list

查看指定配置

git config user.name

3.配置

//配置user.name

git config --global user.name "xiaohong"

//配置user.email

git config --global user.email "xiaohong@163.com"

4.修改配置

4.1 命令修改

//修改user.name为xiaoming

git config --global user.name "xiaoming"

4.2 修改配置文件

C:\Users\{user}\.gitconfig

[user]

email = xiaohong@163.com

name = xiaohong

5.别名

git config --global alias.st status

git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"

具体提交日期格式

git config --global alias.lg "log --color --graph --date=format:'%Y-%m-%d %H:%M:%S' --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cd) %C(bold blue)<%an>%Creset' --abbrev-commit"

效果图

相关文章

网友评论

      本文标题:git config

      本文链接:https://www.haomeiwen.com/subject/tfkwvftx.html