diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-08-29 00:16:39 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-29 00:16:39 -0700 |
commit | 445cac18c015809a7fcb4a570d3c6571b1ddaf7d (patch) | |
tree | 89eeb8e6618d9eb582ea5bd1a2cf781625ebc001 /archive.c | |
parent | git-p4: Fix checkout bug when using --import-local. (diff) | |
parent | tutorial: gentler illustration of Alice/Bob workflow using gitk (diff) | |
download | tgif-445cac18c015809a7fcb4a570d3c6571b1ddaf7d.tar.xz |
Merge branch 'maint'
* maint:
tutorial: gentler illustration of Alice/Bob workflow using gitk
pretty=format: respect date format options
make git-shell paranoid about closed stdin/stdout/stderr
Document gitk --argscmd flag.
Fix '--dirstat' with cross-directory renaming
for-each-ref: Allow a trailing slash in the patterns
Diffstat (limited to 'archive.c')
-rw-r--r-- | archive.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ static void format_subst(const struct commit *commit, strbuf_add(&fmt, b + 8, c - b - 8); strbuf_add(buf, src, b - src); - format_commit_message(commit, fmt.buf, buf); + format_commit_message(commit, fmt.buf, buf, DATE_NORMAL); len -= c + 1 - src; src = c + 1; } |