diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-03-06 00:58:42 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-03-06 00:58:42 +0100 |
commit | 8cc3fe45c92a2e85400a6ee83c3b3a4a8ca1d6c7 (patch) | |
tree | c30c346e1141d8b7aaa15f2f36349ec7e44399d1 /hash-object.c | |
parent | Merge branch 'jc/blame' (diff) | |
parent | Ensure proper setup of git_dir for git-hash-object (diff) | |
download | git-8cc3fe45c92a2e85400a6ee83c3b3a4a8ca1d6c7.tar.xz git-8cc3fe45c92a2e85400a6ee83c3b3a4a8ca1d6c7.zip |
Merge branch 'en/maint-hash-object'
* en/maint-hash-object:
Ensure proper setup of git_dir for git-hash-object
Conflicts:
hash-object.c
Diffstat (limited to 'hash-object.c')
-rw-r--r-- | hash-object.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hash-object.c b/hash-object.c index 37e66779ab..ebb3bedb07 100644 --- a/hash-object.c +++ b/hash-object.c @@ -84,8 +84,6 @@ int main(int argc, const char **argv) git_extract_argv0_path(argv[0]); - git_config(git_default_config, NULL); - argc = parse_options(argc, argv, hash_object_options, hash_object_usage, 0); if (write_object) { @@ -95,6 +93,8 @@ int main(int argc, const char **argv) vpath = prefix_filename(prefix, prefix_length, vpath); } + git_config(git_default_config, NULL); + if (stdin_paths) { if (hashstdin) errstr = "Can't use --stdin-paths with --stdin"; |