longgb246的博客

git配置

使用git-bash:

到网站下载即可:
https://git-scm.com/downloads
下载windows版本的就可以。

设置用户:

1
2
git config -–global user.name "xxx"
git config –-global user.email "xxx@xxx.com"

其中查看已有的git配置,命令为:

1
git config -l

git的lg配置

1
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"

效果如下:

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

配置显示比较炫酷,图像如下:

坚持原创技术分享,您的支持将鼓励我继续创作!