diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2018-03-03 18:35:54 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-05 11:14:03 -0800 |
commit | b2f0eceecf266e60fa95970e0973a8f23f911fb1 (patch) | |
tree | ca03c9b0c360f210b0005112c2b01278c7b9c0a7 /common-main.c | |
parent | b2e45c695d09f6a31ce09347ae0a5d2cdfe9dd4e (diff) | |
download | git-b2f0eceecf266e60fa95970e0973a8f23f911fb1.tar.gz |
repository: initialize the_repository in main()
This simplifies initialization of struct repository and anything
inside. Easier to read. Easier to add/remove fields.
Everything will go through main() common-main.c so this should cover all
programs, including t/helper.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'common-main.c')
-rw-r--r-- | common-main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common-main.c b/common-main.c index 6a689007e7..7d716d5a54 100644 --- a/common-main.c +++ b/common-main.c @@ -34,6 +34,8 @@ int main(int argc, const char **argv) git_setup_gettext(); + initialize_the_repository(); + attr_start(); git_extract_argv0_path(argv[0]); |