21

我需要有如下格式:

git log --decorate --graph --oneline --date-order

但我也需要它:

  1. 包含日期(短)
  2. 拥有相同的颜色

我试过:

git log --decorate --graph --oneline --date-order \
--date=short --pretty=format:"%h %ad %s"

但它更难阅读(没有颜色)并且不包括分支/标签


最接近的简单解决方案是(感谢VonC):

git log --graph --pretty=format:'%C(yellow)%h%Creset \
-%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' \
--abbrev-commit --date=short
4

5 回答 5

16

你可以试试:

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

它有不同的颜色,但您可以轻松更改它们。

例如:

git log --graph --pretty=format:'%Cred%h -%d %s (%cr) <%an>%Creset' --abbrev-commit --date=short --branches
于 2011-09-15T11:36:50.187 回答
6

好吧,“不可能”意味着没有简单的方法,我必须自己做。我太担心我总是让事情变得艰难,而实际上有更简单的方法。

这是一个 bash+php 脚本。我试图用 sed 来做,但我失败了。

我将此脚本命名为 git-gd 并将其放在路径中的 bin 目录中,/usr/local/bin/然后将其与 git 一起使用:git gdgit gd <options>

#!/bin/bash

GIT="/usr/local/bin/git"
PHP="/bin/php"
GIT_DATES="$GIT log --date=short --abbrev-commit --pretty=format:%C(yellow)%h_%C(green)[%ad]%Creset --branches --color=always $*"
#if you have have alias g
GIT_GRAPH="$GIT g --color=always"
#or
#GIT_GRAPH="$GIT log --decorate --graph --oneline --date-order --color=always"
PHP_SCRIPT='
  $exps = explode("\n", $_SERVER["argv"][1]);
  $lines = file("php://stdin");
  $s = array();
  $r=$s;
  foreach($exps as $exp){
   $exp = trim($exp);
   list($commit,)=explode("_", $exp);
   $s[] = $commit;
   $r[] = str_replace("_", " ", $exp);
  }
  foreach($lines as $line){
    $line = str_replace($s, $r, $line);
    echo $line ;
  }
  '

DATES=`$GIT_DATES`
$GIT_GRAPH $* |$PHP -r "$PHP_SCRIPT" -- "$DATES"

我会等待更简单的解决方案,我会接受我自己的答案

于 2011-09-15T13:51:42.250 回答
5

在非古代版本的 git 中,您可以配置git log以启用装饰:

git config --global log.decorate full
于 2012-03-23T17:47:31.497 回答
2

此外,在您的 git 配置中,您可以添加如下两行:

[format]
  pretty = %Cblue%h%Creset %Cgreen[%ar]%Creset (%an) %s 

这只是意味着您可以输入 git log 并且它将始终被格式化。

于 2013-07-16T14:44:59.643 回答
0

整齐地记录您的提交并格式化使用

git log --pretty=format:"%h - %an, %ar : %s"  
  • 查看分支上的提交
于 2021-08-17T09:33:08.170 回答