summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-01-07 10:00:28 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-01-08 05:36:35 (GMT)
commit7d1864ce67d83485cf5cbc8c90fc170ee884ef16 (patch)
treec6283633ed659deb0cfdecd52f41d63104bc569a /cache.h
parent510c5a8ee392fd2ab954b676bae486b53f444013 (diff)
downloadgit-7d1864ce67d83485cf5cbc8c90fc170ee884ef16.zip
git-7d1864ce67d83485cf5cbc8c90fc170ee884ef16.tar.gz
git-7d1864ce67d83485cf5cbc8c90fc170ee884ef16.tar.bz2
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>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index 36be64e..cff2569 100644
--- a/cache.h
+++ b/cache.h
@@ -127,7 +127,8 @@ extern int cache_errno;
#define CONFIG_LOCAL_ENVIRONMENT "GIT_CONFIG_LOCAL"
#define EXEC_PATH_ENVIRONMENT "GIT_EXEC_PATH"
-extern int is_bare_git_dir(const char *dir);
+extern int is_bare_repository_cfg;
+extern int is_bare_repository(void);
extern const char *get_git_dir(void);
extern char *get_object_directory(void);
extern char *get_refs_directory(void);