aboutsummaryrefslogtreecommitdiff
path: root/git-clone.sh
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-01-22 17:27:52 -0800
committerJunio C Hamano <junkio@cox.net>2006-01-24 23:17:06 -0800
commit4fb66a62eeb7bfec115cd0058d7a05ab62fc23e7 (patch)
treeab55d82682368f3c03c2b2933dff5a821f99db9f /git-clone.sh
parent87e80c4b5fec421ecd566498b7dd4672f76fdca2 (diff)
downloadgit-4fb66a62eeb7bfec115cd0058d7a05ab62fc23e7.tar.gz
git-4fb66a62eeb7bfec115cd0058d7a05ab62fc23e7.tar.xz
clone: do not create remotes/origin nor origin branch in a bare repository.
It is simply pointless, since no merges will ever happen in such a repository. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-clone.sh')
-rwxr-xr-xgit-clone.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-clone.sh b/git-clone.sh
index 8e6520232..73fc91980 100755
--- a/git-clone.sh
+++ b/git-clone.sh
@@ -209,7 +209,7 @@ esac
cd "$D" || exit
-if test -f "$GIT_DIR/HEAD"
+if test -f "$GIT_DIR/HEAD" && test -z "$bare"
then
head_points_at=`git-symbolic-ref HEAD`
case "$head_points_at" in