diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-02 00:40:24 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-02 20:09:56 -0700 |
commit | 9f0bb90d161edf8c43f5261d12bf83f14eb02ff4 (patch) | |
tree | 5c97ff538c0b92d94520336bad695b1b62821a2a /config.c | |
parent | 3d990f110c2e5b8df83f6ab3ef83497f43c7fd47 (diff) | |
download | git-9f0bb90d161edf8c43f5261d12bf83f14eb02ff4.tar.gz |
core.prefersymlinkrefs: use symlinks for .git/HEAD
When inspecting a project whose build infrastructure used to
assume that .git/HEAD is a symlink ref, core.prefersymlinkrefs
in the config file of such a project would help to bisect its
history.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -227,8 +227,8 @@ int git_default_config(const char *var, const char *value) return 0; } - if (!strcmp(var, "core.symrefsonly")) { - only_use_symrefs = git_config_bool(var, value); + if (!strcmp(var, "core.prefersymlinkrefs")) { + prefer_symlink_refs = git_config_bool(var, value); return 0; } |