diff options
author | Junio C Hamano <junkio@cox.net> | 2006-08-08 15:42:20 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-08 15:42:20 -0700 |
commit | 102cb08521df5f33b30c0ef41a1078a61e593943 (patch) | |
tree | 907c6791951e3ae9bae1e0c88dba505a6bbac810 /builtin-log.c | |
parent | git.c: Rename NEEDS_PREFIX to RUN_SETUP (diff) | |
parent | git-push: allow pushing from subdirectories (diff) | |
download | tgif-102cb08521df5f33b30c0ef41a1078a61e593943.tar.xz |
Merge branch 'master' into mk/rename
Diffstat (limited to 'builtin-log.c')
-rw-r--r-- | builtin-log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-log.c b/builtin-log.c index bba1496bf2..691cf3aef7 100644 --- a/builtin-log.c +++ b/builtin-log.c @@ -257,6 +257,7 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix) char message_id[1024]; char ref_message_id[1024]; + setup_ident(); git_config(git_format_config); init_revisions(&rev, prefix); rev.commit_format = CMIT_FMT_EMAIL; @@ -306,7 +307,6 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix) !strcmp(argv[i], "-s")) { const char *committer; const char *endpos; - setup_ident(); committer = git_committer_info(1); endpos = strchr(committer, '>'); if (!endpos) |