diff options
| author | Junio C Hamano <junkio@cox.net> | 2007-01-11 16:50:36 -0800 |
|---|---|---|
| committer | Junio C Hamano <junkio@cox.net> | 2007-01-11 16:50:36 -0800 |
| commit | e861ce1692fa9809f3e7b898804f8ddaf7cd8975 (patch) | |
| tree | 1d812c3d71bab1fcf45fa09f03da21cd01c985ba /git-fetch.sh | |
| parent | 141d21b8256ef96bbd693fd35e154787365e26dc (diff) | |
| parent | 7eff28a9b42cb0d3aad932338b2e645fc6ed8fa9 (diff) | |
| download | git-e861ce1692fa9809f3e7b898804f8ddaf7cd8975.tar.gz | |
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 'git-fetch.sh')
| -rwxr-xr-x | git-fetch.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/git-fetch.sh b/git-fetch.sh index 466fe59e35..c58704d794 100755 --- a/git-fetch.sh +++ b/git-fetch.sh @@ -231,11 +231,12 @@ update_local_ref () { esac } -case "$update_head_ok" in -'') +# updating the current HEAD with git-fetch in a bare +# repository is always fine. +if test -z "$update_head_ok" && test $(is_bare_repository) = false +then orig_head=$(git-rev-parse --verify HEAD 2>/dev/null) - ;; -esac +fi # If --tags (and later --heads or --all) is specified, then we are # not talking about defaults stored in Pull: line of remotes or |
