diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-03-10 22:45:49 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-03-10 22:45:49 -0800 |
commit | adfe4e1ff2c296184856bf55636be845f96b55e5 (patch) | |
tree | ca672bed6ea60d2b3fdc9454f75b03e52472063c /config.c | |
parent | 83c3c6222a2331042c973a991572eafa37f25d1d (diff) | |
parent | ea2c69ed4728070be1d2ee953a6948398b859150 (diff) | |
download | git-adfe4e1ff2c296184856bf55636be845f96b55e5.tar.gz |
Merge branch 'maint'
* maint:
Revert "core.abbrevguard: Ensure short object names stay unique a bit longer"
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -499,13 +499,6 @@ static int git_default_core_config(const char *var, const char *value) return 0; } - if (!strcmp(var, "core.abbrevguard")) { - unique_abbrev_extra_length = git_config_int(var, value); - if (unique_abbrev_extra_length < 0) - unique_abbrev_extra_length = 0; - return 0; - } - if (!strcmp(var, "core.bare")) { is_bare_repository_cfg = git_config_bool(var, value); return 0; |