diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-28 00:50:53 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-28 01:58:50 -0800 |
commit | 01754769ab9bf9ff2fe2b12590e7ee2c7c3448ca (patch) | |
tree | e98e8d08196d2bbc2a2326c1d439f17f301e9d4c /fetch-pack.c | |
parent | git-log -g --pretty=oneline should display the reflog message (diff) | |
download | tgif-01754769ab9bf9ff2fe2b12590e7ee2c7c3448ca.tar.xz |
Don't force everybody to call setup_ident().
Back when only handful commands that created commit and tag were
the only users of committer identity information, it made sense
to explicitly call setup_ident() to pre-fill the default value
from the gecos information. But it is much simpler for programs
to make the call automatic when get_ident() is called these days,
since many more programs want to use the information when updating
the reflog.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'fetch-pack.c')
-rw-r--r-- | fetch-pack.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fetch-pack.c b/fetch-pack.c index 83a1d7b319..c787106764 100644 --- a/fetch-pack.c +++ b/fetch-pack.c @@ -670,7 +670,6 @@ int main(int argc, char **argv) struct stat st; setup_git_directory(); - setup_ident(); git_config(fetch_pack_config); if (0 <= transfer_unpack_limit) |