diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-07 15:36:39 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-07 15:36:39 -0700 |
commit | fd60acaced6de16ebfb66959067e2b29f99a133e (patch) | |
tree | 32d43206d1d50ddab868904991fa75f88f69ffa7 /git-clone.sh | |
parent | d92f1dc63f0582e7cf8dac54d50a2748119a1ce3 (diff) | |
parent | 178613c737f82489a1e2c387236731541fe19081 (diff) | |
download | git-fd60acaced6de16ebfb66959067e2b29f99a133e.tar.gz |
Merge branch 'fix'
* fix:
repack: honor -d even when no new pack was created
clone: keep --reference even with -l -s
repo-config: document what value_regexp does a bit more clearly.
Release config lock if the regex is invalid
core-tutorial.txt: escape asterisk
Diffstat (limited to 'git-clone.sh')
-rwxr-xr-x | git-clone.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-clone.sh b/git-clone.sh index 0805168057..b78524767c 100755 --- a/git-clone.sh +++ b/git-clone.sh @@ -265,7 +265,7 @@ yes,yes) test -f "$repo/objects/info/alternates" && cat "$repo/objects/info/alternates"; echo "$repo/objects" - } >"$GIT_DIR/objects/info/alternates" + } >>"$GIT_DIR/objects/info/alternates" ;; esac git-ls-remote "$repo" >"$GIT_DIR/CLONE_HEAD" |