author | Junio C Hamano <junkio@cox.net> | |
Sun, 7 Jan 2007 10:00:28 +0000 (02:00 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Mon, 8 Jan 2007 05:36:35 +0000 (21:36 -0800) | ||
commit | 7d1864ce67d83485cf5cbc8c90fc170ee884ef16 | |
tree | c6283633ed659deb0cfdecd52f41d63104bc569a | tree | snapshot |
parent | 510c5a8ee392fd2ab954b676bae486b53f444013 | commit | diff |
Introduce is_bare_repository() and core.bare configuration variable
This removes the old is_bare_git_dir(const char *) to ask if a
directory, if it is a GIT_DIR, is a bare repository, and
replaces it with is_bare_repository(void *). The function looks
at core.bare configuration variable if exists but uses the old
heuristics: if it is ".git" or ends with "/.git", then it does
not look like a bare repository, otherwise it does.
Signed-off-by: Junio C Hamano <junkio@cox.net>
This removes the old is_bare_git_dir(const char *) to ask if a
directory, if it is a GIT_DIR, is a bare repository, and
replaces it with is_bare_repository(void *). The function looks
at core.bare configuration variable if exists but uses the old
heuristics: if it is ".git" or ends with "/.git", then it does
not look like a bare repository, otherwise it does.
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-init-db.c | diff | blob | history | |
cache.h | diff | blob | history | |
config.c | diff | blob | history | |
environment.c | diff | blob | history | |
refs.c | diff | blob | history |