X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=environment.c;h=e6bd0033b4666f52dc756b6e2b0d5a1745b0c6b9;hb=1c2a4f5addce479c619057c6cdc841802139982f;hp=3de8eb3b2a2359a9f8a9f702076292f1e1429df3;hpb=94df2506edd76a886a1044376f8c99349b2f226e;p=git.git diff --git a/environment.c b/environment.c index 3de8eb3b2..e6bd0033b 100644 --- a/environment.c +++ b/environment.c @@ -11,15 +11,19 @@ char git_default_email[MAX_GITNAME]; char git_default_name[MAX_GITNAME]; +int use_legacy_headers = 1; int trust_executable_bit = 1; -int assume_unchanged = 0; -int prefer_symlink_refs = 0; -int log_all_ref_updates = 0; +int assume_unchanged; +int prefer_symlink_refs; +int log_all_ref_updates; int warn_ambiguous_refs = 1; -int repository_format_version = 0; +int repository_format_version; char git_commit_encoding[MAX_ENCODING_LENGTH] = "utf-8"; int shared_repository = PERM_UMASK; -const char *apply_default_whitespace = NULL; +const char *apply_default_whitespace; +int zlib_compression_level = Z_DEFAULT_COMPRESSION; +int pager_in_use; +int pager_use_color = 1; static char *git_dir, *git_object_dir, *git_index_file, *git_refs_dir, *git_graft_file;