aboutsummaryrefslogtreecommitdiff
path: root/environment.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-05-02 00:40:24 -0700
committerJunio C Hamano <junkio@cox.net>2006-05-05 14:37:08 -0700
commite388c7382563b7497397c78bc078d0679dc891a8 (patch)
treed632fde11831ec54fd46275cf9d90118318c93b7 /environment.c
parent7ebdba614223f867d3f19963647406df1d0e5ce0 (diff)
downloadgit-e388c7382563b7497397c78bc078d0679dc891a8.tar.gz
git-e388c7382563b7497397c78bc078d0679dc891a8.tar.xz
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> (cherry picked from 9f0bb90d161edf8c43f5261d12bf83f14eb02ff4 commit)
Diffstat (limited to 'environment.c')
-rw-r--r--environment.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/environment.c b/environment.c
index 6df647862..444c99ed6 100644
--- a/environment.c
+++ b/environment.c
@@ -13,7 +13,7 @@ char git_default_email[MAX_GITNAME];
char git_default_name[MAX_GITNAME];
int trust_executable_bit = 1;
int assume_unchanged = 0;
-int only_use_symrefs = 0;
+int prefer_symlink_refs = 0;
int warn_ambiguous_refs = 1;
int repository_format_version = 0;
char git_commit_encoding[MAX_ENCODING_LENGTH] = "utf-8";