diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2005-11-15 19:24:19 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-15 11:42:29 -0800 |
commit | f8348be3be8493a62110a09ab0343213990b416b (patch) | |
tree | efad0bc70473bdc02b8ac6a5e5f001519f1d5dfa /environment.c | |
parent | 4a4e6fd74f7d4564ed43eaaf59b6bd70c1959f1a (diff) | |
download | git-f8348be3be8493a62110a09ab0343213990b416b.tar.gz |
Add config variable core.symrefsonly
This allows you to force git to avoid symlinks for refs. Just add
something like
[core]
symrefsonly = true
to .git/config.
DonĀ“t forget to "git checkout your_branch", or it does not do anything...
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'environment.c')
-rw-r--r-- | environment.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/environment.c b/environment.c index 1dc7af56cf..b5026f1265 100644 --- a/environment.c +++ b/environment.c @@ -12,6 +12,7 @@ char git_default_email[MAX_GITNAME]; char git_default_name[MAX_GITNAME]; int trust_executable_bit = 1; +int only_use_symrefs = 0; static char *git_dir, *git_object_dir, *git_index_file, *git_refs_dir, *git_graft_file; |