diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-17 17:34:51 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-17 17:34:51 -0800 |
commit | 9b1320a99e906b5e7011f5e641f7400d82bbc82f (patch) | |
tree | 6ad9c9ac0c2a2c07938d34be22a6f027843a0d77 /git-clone.sh | |
parent | 0f4aa3993de5fc7252e43ebd872fd9e4b615873d (diff) | |
parent | 289c4b36e336af5266b86d924ef0aa828e8e4841 (diff) | |
download | git-9b1320a99e906b5e7011f5e641f7400d82bbc82f.tar.gz git-9b1320a99e906b5e7011f5e641f7400d82bbc82f.tar.xz |
Merge branch 'js/portable'
* js/portable:
Support Irix
Optionally support old diffs
Fix cpio call
SubmittingPatches: note on whitespaces
Add a README for gitview
Add contrib/README.
git-tag: -l to list tags (usability).
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 d184ceb7a..dc0ad552a 100755 --- a/git-clone.sh +++ b/git-clone.sh @@ -154,7 +154,7 @@ yes,yes) fi && rm -f "$GIT_DIR/objects/sample" && cd "$repo" && - find objects -depth -print | cpio -puamd$l "$GIT_DIR/" || exit 1 + find objects -depth -print | cpio -pumd$l "$GIT_DIR/" || exit 1 ;; yes) mkdir -p "$GIT_DIR/objects/info" |