我正在使用git命令:git log --graph --decorate --abbrev-commit --all --pretty --oneline
。我喜欢它给我的格式,但我遗漏了很多信息,我应该如何修改作者和行/文件?
谢谢
答案 0 :(得分:1)
这样会更好看
git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --shortstat
答案 1 :(得分:0)
试试这个:
git log --graph --shortstat --abbrev-commit --date=short --pretty=format:'%h [%an] [%ad] %s'
答案 2 :(得分:0)
我使用以下
git log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat