diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-12 01:50:36 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-12 01:50:36 +0100 |
commit | e861ce1692fa9809f3e7b898804f8ddaf7cd8975 (patch) | |
tree | 1d812c3d71bab1fcf45fa09f03da21cd01c985ba /refs.c | |
parent | Merge branch 'ar/merge-recursive' (diff) | |
parent | Disallow working directory commands in a bare repository. (diff) | |
download | git-e861ce1692fa9809f3e7b898804f8ddaf7cd8975.tar.xz git-e861ce1692fa9809f3e7b898804f8ddaf7cd8975.zip |
Merge branch 'jc/bare'
* jc/bare:
Disallow working directory commands in a bare repository.
git-fetch: allow updating the current branch in a bare repository.
Introduce is_bare_repository() and core.bare configuration variable
Move initialization of log_all_ref_updates
Diffstat (limited to 'refs.c')
-rw-r--r-- | refs.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -923,6 +923,9 @@ static int log_ref_write(struct ref_lock *lock, char *logrec; const char *committer; + if (log_all_ref_updates < 0) + log_all_ref_updates = !is_bare_repository(); + if (log_all_ref_updates && (!strncmp(lock->ref_name, "refs/heads/", 11) || !strncmp(lock->ref_name, "refs/remotes/", 13))) { |