我想配置git持久登录oneline格式

时间:2016-03-25 14:19:05

标签: git

我刚刚找到log.decorate设置,但它不是。 有没有办法只输入git log并收到这样的输出

756318c message3
a5001f4 message2
339d5e3 message1

2 个答案:

答案 0 :(得分:0)

我想这就是你想要的东西:

https://coderwall.com/p/euwpig/a-better-git-log

答案 1 :(得分:0)

将此添加到您的~/.gitconfig

 [format]
   pretty = format:%h %s

或者,作为r45i suggests in the comment below,输出着色:

 [format]
   pretty = format:%C(auto) %h %s

git-config(1)上的format.prettygit-log(1)上的--pretty=...