summaryrefslogtreecommitdiff
path: root/local-fetch.c
diff options
context:
space:
mode:
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>2006-08-04 21:01:34 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-08-05 20:51:58 (GMT)
commit19c4588178463cd8f0745d430159ab806d9fa6e4 (patch)
tree41b533e685060be306d33cc1e0729996ad8c77a6 /local-fetch.c
parent07efc6a6b6e5098ccd2dcce853be421b7dd1e244 (diff)
downloadgit-19c4588178463cd8f0745d430159ab806d9fa6e4.zip
git-19c4588178463cd8f0745d430159ab806d9fa6e4.tar.gz
git-19c4588178463cd8f0745d430159ab806d9fa6e4.tar.bz2
commit walkers: setup_ident() to record correct committer in ref-log.
The function pull() in fetch.c calls write_ref_sha1(), which may need committer identity to update the ref-log, so they need to call setup_ident() before calling git_config() function. Acked-by: Shawn Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'local-fetch.c')
-rw-r--r--local-fetch.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/local-fetch.c b/local-fetch.c
index b216bdd..4bf86fb 100644
--- a/local-fetch.c
+++ b/local-fetch.c
@@ -210,6 +210,7 @@ int main(int argc, const char **argv)
char **commit_id;
int arg = 1;
+ setup_ident();
setup_git_directory();
git_config(git_default_config);