diff options
| author | Junio C Hamano <gitster@pobox.com> | 2015-08-03 11:01:31 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2015-08-03 11:01:31 -0700 |
| commit | 7a06e63f821069fe959cdfe16592d9678eee06e4 (patch) | |
| tree | 62f92b6c50fe542a977e3eff142c7595bae040a2 /contrib/subtree/git-subtree.sh | |
| parent | Merge branch 'jx/do-not-crash-receive-pack-wo-head' (diff) | |
| parent | contrib/subtree: ignore log.date configuration (diff) | |
| download | git-7a06e63f821069fe959cdfe16592d9678eee06e4.tar.gz git-7a06e63f821069fe959cdfe16592d9678eee06e4.zip | |
Merge branch 'da/subtree-date-confusion'
"git subtree" (in contrib/) depended on "git log" output to be
stable, which was a no-no. Apply a workaround to force a
particular date format.
* da/subtree-date-confusion:
contrib/subtree: ignore log.date configuration
Diffstat (limited to 'contrib/subtree/git-subtree.sh')
| -rwxr-xr-x | contrib/subtree/git-subtree.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/subtree/git-subtree.sh b/contrib/subtree/git-subtree.sh index 07bd77c4c8..9f06571851 100755 --- a/contrib/subtree/git-subtree.sh +++ b/contrib/subtree/git-subtree.sh @@ -305,7 +305,7 @@ copy_commit() # We're going to set some environment vars here, so # do it in a subshell to get rid of them safely later debug copy_commit "{$1}" "{$2}" "{$3}" - git log -1 --pretty=format:'%an%n%ae%n%ad%n%cn%n%ce%n%cd%n%B' "$1" | + git log -1 --pretty=format:'%an%n%ae%n%aD%n%cn%n%ce%n%cD%n%B' "$1" | ( read GIT_AUTHOR_NAME read GIT_AUTHOR_EMAIL |
