如何配置git log
为显示commit date
而不是author date
?
问问题
89577 次
4 回答
85
您可以使用--pretty=format
和使用%cr
提交日期相对。
例如:
$ git log --graph --pretty=format:'%C(auto)%h%d (%cr) %cn <%ce> %s'
您可以在 git 中定义一个别名以使其更易于使用。我有以下内容.gitconfig
:
[alias]
# see `git help log` for detailed help.
# %h: abbreviated commit hash
# %d: ref names, like the --decorate option of git-log(1)
# %cn: commiter name
# %ce: committer email
# %cr: committer date, relative
# %ci: committer date, ISO 8601-like format
# %an: author name
# %ae: author email
# %ar: author date, relative
# %ai: author date, ISO 8601-like format
# %s: subject
# my awesome git log replacement
lol = log --graph --pretty=format:\"%C(auto)%h%d%Creset %C(cyan)(%cr)%Creset %C(green)%cn <%ce>%Creset %s\"
# same as above, but ISO date
lold = log --graph --pretty=format:\"%C(auto)%h%d%Creset %C(cyan)(%ci)%Creset %C(green)%cn <%ce>%Creset %s\"
# using build-in standards
lol2 = log --oneline --graph --decorate
# shows branches and their last commits
lol3 = log --all --graph --decorate --oneline --simplify-by-decoration
在 Linux 或类似系统上,您可以使用单引号'
而不是双引号"
:
[alias]
lol = log --graph --pretty=format:'%C(auto)%h%d%Creset %C(cyan)(%cr)%Creset %C(green)%cn <%ce>%Creset %s'
有了这个,只需运行git lol
或其他变体即可查看漂亮的输出。
这是输出git lol --simplify-by-decoration
:
- 这看起来不错的样子。:)
lol
比 更容易打字log
,而且听起来也更好。git log
如果您需要,还可以让您访问常规。
- 您的眼睛可以通过不同的颜色快速扫描内容。
- 姓名和电子邮件对于有许多贡献者的大型项目/组织非常有用。
- 对 hash/ref 使用默认着色,因为它已经很不错了。
这是git lold
ISO 格式的日期输出。有助于查看提交的确切日期/时间,并且能够轻松查看贡献者的时区。
编辑 2020-06:添加了屏幕截图。更新为对(提交哈希)和(参考名称)使用%C(auto)
(自动/默认着色)。除了电子邮件之外,还添加了(提交者姓名)。%h
%d
%cn
于 2014-01-29T22:29:49.217 回答
15
我更喜欢这种格式,不包括作者姓名,包括实际提交日期。
git log --graph --pretty=format:"%C(yellow)%h%x09%Creset%C(cyan)%C(bold)%ad%Creset %C(green)%Creset %s" --date=short
于 2020-01-04T16:49:07.833 回答