projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3159c8d
)
receive-pack: call setup_ident before git_config
author
Junio C Hamano
<junkio@cox.net>
Wed, 27 Sep 2006 20:47:21 +0000
(13:47 -0700)
committer
Junio C Hamano
<junkio@cox.net>
Wed, 27 Sep 2006 20:47:21 +0000
(13:47 -0700)
Otherwise we would end up getting values from Gecos which is often not
what people would want.
Signed-off-by: Junio C Hamano <junkio@cox.net>
receive-pack.c
patch
|
blob
|
history
diff --git
a/receive-pack.c
b/receive-pack.c
index f0b4cb47c78434a27faaedaeac030d9ce1187edd..c8aacbbdd3089fdc412da368ca7609da590e0ca3 100644
(file)
--- a/
receive-pack.c
+++ b/
receive-pack.c
@@
-261,6
+261,7
@@
int main(int argc, char **argv)
if (!enter_repo(dir, 0))
die("'%s': unable to chdir or not a git archive", dir);
+ setup_ident();
git_config(git_default_config);
write_head_info();