git log -n 5 –pretty=format:”%h %ad %s” –date=short “` 这会输出最近5次提交历史记录的提交哈希值、日期和信息。 除了`–pretty`和`–date`之外,还可以使用其他选项来自定义`git log`的输出格式。详细的格式选项可以通过运行`git help log`命令来查看。 以上就是使用Git来显示提交日期的方法。通过...
--pretty=format控制显示信息的颜色:https://www.cnblogs.com/wutou/p/17536218.html 注意:某些参数,老版本 git 可能不支持 遍历 有些变量,官方并没有提供,只能遍历出值,来确定作用 foriin{a..z};doforjin{a..z};doecho"$i$j=$(git log -1 --pretty=format:%$i$j)";done;done foriin{a..z}...
git log--pretty=format:'%H'-n1%H:commit hash%h:缩短的commit hash%T:tree hash%t:缩短的 tree hash%P:parent hashes%p:缩短的 parent hashes%an:作者名字%aN:mailmap的作者名字(.mailmap对应,详情参照[git-shortlog(1)](http://linux.die.net/man/1/git-shortlog)或者[git-blame(1)](http://linu...
git config --global alias.lg "log --graph" 最后来一个别人分享的例子,稍微有些慢,但是可以看下git log定制效果,效果很酷。。 git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative...
git log --pretty=format常用的选项 选项说明 %H提交的完整哈希值 %h提交的简写哈希值 %T树的完整哈希值 %t树的简写哈希值 %P父提交的完整哈希值 %p父提交的简写哈希值 %an作者名字 %ae作者的电子邮件地址 %ad作者修订日期(可以用 --date=选项 来定制格式) ...
--date=(relative|local|default|iso|rfc|short|raw) 仅对以人类可读格式显示的日期生效,例如使用--pretty.log.date这个config变量设置日志的默认值。 --date有几个默认选项: --date=relative:显示相对于当前时间的日期,例如"2小时前"。 --date=local:显示用户本地时区中的时间戳。
git log--pretty=full//和默认git log 输出的一样git log--pretty=fuller 这种日志,适用于浏览大量提交记录时使用。 而我们如果想让输出的结果,按照我们指定的格式输出,那么可以使用format指令。示例:git log --pretty=format:"哈希值:%h - 作者:%an,修改时间:%ar 内容:%s " ...
--oneline --pretty=oneline --abbrev-commit 的简化用法。 限制输出长度 除了定制输出格式的选项之外,git log 还有许多非常实用的限制输出长度的选项,也就是只输出部分提交信息。之前我们已经看到过 -2 了,它只显示最近的两条提交,实际上,这是 -<n> 选项的写法,其中的 n 可以是任何自然数,表示仅显示最近的若...
$ git log -2 --pretty=tformat:%h 4da45bef \ | perl -pe '$_ .= " -- NO NEWLINE\n" unless /\n/' 4da45be 7134973 In addition, any unrecognized string that has a%in it is interpreted as if it hastformat:in front of it. For example, these two are equivalent: ...
git log --pretty=format:"%cn committed %h on %cd" 输出内容如下: John committed 400e4b7 on Fri Jun2412:30:042014-0500 John committed 89ab2cf on Thu Jun2317:09:422014-0500 Mary committed 180e223 on Wed Jun2217:21:192014-0500 John committed f12ca28 on Wed Jun2213:50:312014-0500 ...