| Linus Torvalds | 3f571e0 | 2005-06-23 01:49:43 | [diff] [blame] | 1 | #!/bin/sh |
| Junio C Hamano | e95ab1e | 2005-07-06 20:04:21 | [diff] [blame] | 2 | # |
| 3 | # Copyright (c) 2005, Linus Torvalds |
| 4 | # Copyright (c) 2005, Junio C Hamano |
| 5 | # |
| 6 | # Clone a repository into a different directory that does not yet exist. |
| 7 | |
| Junio C Hamano | 365527a | 2005-09-13 02:47:07 | [diff] [blame] | 8 | # See git-sh-setup why. |
| 9 | unset CDPATH |
| 10 | |
| Junio C Hamano | e95ab1e | 2005-07-06 20:04:21 | [diff] [blame] | 11 | usage() { |
| Johannes Schindelin | e6c310f | 2005-12-22 22:37:24 | [diff] [blame] | 12 | echo >&2 "Usage: $0 [-l [-s]] [-q] [-u <upload-pack>] [-o <name>] [-n] <repo> [<dir>]" |
| Junio C Hamano | e95ab1e | 2005-07-06 20:04:21 | [diff] [blame] | 13 | exit 1 |
| 14 | } |
| 15 | |
| Linus Torvalds | ba375ac | 2005-07-08 22:46:33 | [diff] [blame] | 16 | get_repo_base() { |
| 17 | (cd "$1" && (cd .git ; pwd)) 2> /dev/null |
| 18 | } |
| 19 | |
| Junio C Hamano | 0516de3 | 2005-09-05 07:47:39 | [diff] [blame] | 20 | if [ -n "$GIT_SSL_NO_VERIFY" ]; then |
| 21 | curl_extra_args="-k" |
| 22 | fi |
| 23 | |
| 24 | http_fetch () { |
| 25 | # $1 = Remote, $2 = Local |
| Josef Weidendorfer | 66c9ec2 | 2005-11-10 13:12:19 | [diff] [blame] | 26 | curl -nsfL $curl_extra_args "$1" >"$2" |
| Junio C Hamano | 0516de3 | 2005-09-05 07:47:39 | [diff] [blame] | 27 | } |
| 28 | |
| 29 | clone_dumb_http () { |
| 30 | # $1 - remote, $2 - local |
| 31 | cd "$2" && |
| 32 | clone_tmp='.git/clone-tmp' && |
| 33 | mkdir -p "$clone_tmp" || exit 1 |
| Junio C Hamano | 0562110 | 2005-12-23 00:01:46 | [diff] [blame] | 34 | http_fetch "$1/info/refs" "$clone_tmp/refs" || { |
| Junio C Hamano | 0516de3 | 2005-09-05 07:47:39 | [diff] [blame] | 35 | echo >&2 "Cannot get remote repository information. |
| 36 | Perhaps git-update-server-info needs to be run there?" |
| 37 | exit 1; |
| 38 | } |
| Junio C Hamano | 0516de3 | 2005-09-05 07:47:39 | [diff] [blame] | 39 | while read sha1 refname |
| 40 | do |
| 41 | name=`expr "$refname" : 'refs/\(.*\)'` && |
| Junio C Hamano | cdb3950 | 2005-10-18 04:47:06 | [diff] [blame] | 42 | case "$name" in |
| 43 | *^*) ;; |
| 44 | *) |
| 45 | git-http-fetch -v -a -w "$name" "$name" "$1/" || exit 1 |
| 46 | esac |
| Junio C Hamano | 0516de3 | 2005-09-05 07:47:39 | [diff] [blame] | 47 | done <"$clone_tmp/refs" |
| 48 | rm -fr "$clone_tmp" |
| 49 | } |
| 50 | |
| Linus Torvalds | 167a4a3 | 2005-07-09 17:52:35 | [diff] [blame] | 51 | quiet= |
| Junio C Hamano | e95ab1e | 2005-07-06 20:04:21 | [diff] [blame] | 52 | use_local=no |
| Junio C Hamano | aae4f42 | 2005-08-15 00:25:57 | [diff] [blame] | 53 | local_shared=no |
| Junio C Hamano | 036a72d | 2005-09-27 00:17:09 | [diff] [blame] | 54 | no_checkout= |
| Junio C Hamano | 6ec311d | 2005-07-14 03:25:54 | [diff] [blame] | 55 | upload_pack= |
| Johannes Schindelin | e6c310f | 2005-12-22 22:37:24 | [diff] [blame] | 56 | origin=origin |
| Junio C Hamano | e95ab1e | 2005-07-06 20:04:21 | [diff] [blame] | 57 | while |
| 58 | case "$#,$1" in |
| 59 | 0,*) break ;; |
| Junio C Hamano | 036a72d | 2005-09-27 00:17:09 | [diff] [blame] | 60 | *,-n) no_checkout=yes ;; |
| Junio C Hamano | 1cadb5a | 2005-07-23 02:11:22 | [diff] [blame] | 61 | *,-l|*,--l|*,--lo|*,--loc|*,--loca|*,--local) use_local=yes ;; |
| Junio C Hamano | aae4f42 | 2005-08-15 00:25:57 | [diff] [blame] | 62 | *,-s|*,--s|*,--sh|*,--sha|*,--shar|*,--share|*,--shared) |
| Pavel Roskin | 2c4ed38 | 2005-11-29 06:20:49 | [diff] [blame] | 63 | local_shared=yes; use_local=yes ;; |
| Linus Torvalds | 167a4a3 | 2005-07-09 17:52:35 | [diff] [blame] | 64 | *,-q|*,--quiet) quiet=-q ;; |
| Johannes Schindelin | e6c310f | 2005-12-22 22:37:24 | [diff] [blame] | 65 | 1,-o) usage;; |
| 66 | *,-o) |
| 67 | git-check-ref-format "$2" || { |
| 68 | echo >&2 "'$2' is not suitable for a branch name" |
| 69 | exit 1 |
| 70 | } |
| 71 | origin="$2"; shift |
| 72 | ;; |
| Junio C Hamano | 1cadb5a | 2005-07-23 02:11:22 | [diff] [blame] | 73 | 1,-u|1,--upload-pack) usage ;; |
| Junio C Hamano | 6ec311d | 2005-07-14 03:25:54 | [diff] [blame] | 74 | *,-u|*,--upload-pack) |
| 75 | shift |
| Junio C Hamano | 1cadb5a | 2005-07-23 02:11:22 | [diff] [blame] | 76 | upload_pack="--exec=$1" ;; |
| Junio C Hamano | e95ab1e | 2005-07-06 20:04:21 | [diff] [blame] | 77 | *,-*) usage ;; |
| 78 | *) break ;; |
| 79 | esac |
| 80 | do |
| 81 | shift |
| 82 | done |
| 83 | |
| Linus Torvalds | ba375ac | 2005-07-08 22:46:33 | [diff] [blame] | 84 | # Turn the source into an absolute path if |
| 85 | # it is local |
| Linus Torvalds | 3f571e0 | 2005-06-23 01:49:43 | [diff] [blame] | 86 | repo="$1" |
| Linus Torvalds | ba375ac | 2005-07-08 22:46:33 | [diff] [blame] | 87 | local=no |
| 88 | if base=$(get_repo_base "$repo"); then |
| 89 | repo="$base" |
| 90 | local=yes |
| 91 | fi |
| 92 | |
| Linus Torvalds | 3f571e0 | 2005-06-23 01:49:43 | [diff] [blame] | 93 | dir="$2" |
| Andreas Ericsson | 0879aa2 | 2005-11-10 11:58:08 | [diff] [blame] | 94 | # Try using "humanish" part of source repo if user didn't specify one |
| 95 | [ -z "$dir" ] && dir=$(echo "$repo" | sed -e 's|/$||' -e 's|:*/*\.git$||' -e 's|.*/||g') |
| Josef Weidendorfer | b0c698a | 2005-11-13 14:03:31 | [diff] [blame] | 96 | [ -e "$dir" ] && echo "$dir already exists." && usage |
| Andreas Ericsson | 7f10f7c | 2005-11-10 11:58:08 | [diff] [blame] | 97 | mkdir -p "$dir" && |
| Junio C Hamano | e95ab1e | 2005-07-06 20:04:21 | [diff] [blame] | 98 | D=$( |
| 99 | (cd "$dir" && git-init-db && pwd) |
| 100 | ) && |
| 101 | test -d "$D" || usage |
| 102 | |
| 103 | # We do local magic only when the user tells us to. |
| Linus Torvalds | ba375ac | 2005-07-08 22:46:33 | [diff] [blame] | 104 | case "$local,$use_local" in |
| 105 | yes,yes) |
| Junio C Hamano | e95ab1e | 2005-07-06 20:04:21 | [diff] [blame] | 106 | ( cd "$repo/objects" ) || { |
| Junio C Hamano | ab6625e | 2005-07-11 20:30:54 | [diff] [blame] | 107 | echo >&2 "-l flag seen but $repo is not local." |
| 108 | exit 1 |
| Junio C Hamano | e95ab1e | 2005-07-06 20:04:21 | [diff] [blame] | 109 | } |
| 110 | |
| Junio C Hamano | aae4f42 | 2005-08-15 00:25:57 | [diff] [blame] | 111 | case "$local_shared" in |
| 112 | no) |
| 113 | # See if we can hardlink and drop "l" if not. |
| 114 | sample_file=$(cd "$repo" && \ |
| 115 | find objects -type f -print | sed -e 1q) |
| Junio C Hamano | e95ab1e | 2005-07-06 20:04:21 | [diff] [blame] | 116 | |
| Junio C Hamano | aae4f42 | 2005-08-15 00:25:57 | [diff] [blame] | 117 | # objects directory should not be empty since we are cloning! |
| 118 | test -f "$repo/$sample_file" || exit |
| Junio C Hamano | e95ab1e | 2005-07-06 20:04:21 | [diff] [blame] | 119 | |
| Junio C Hamano | aae4f42 | 2005-08-15 00:25:57 | [diff] [blame] | 120 | l= |
| 121 | if ln "$repo/$sample_file" "$D/.git/objects/sample" 2>/dev/null |
| 122 | then |
| 123 | l=l |
| 124 | fi && |
| 125 | rm -f "$D/.git/objects/sample" && |
| 126 | cd "$repo" && |
| Junio C Hamano | 3d95bf0 | 2005-11-05 19:44:35 | [diff] [blame] | 127 | find objects -depth -print | cpio -puamd$l "$D/.git/" || exit 1 |
| Junio C Hamano | aae4f42 | 2005-08-15 00:25:57 | [diff] [blame] | 128 | ;; |
| 129 | yes) |
| 130 | mkdir -p "$D/.git/objects/info" |
| Junio C Hamano | 0f87f89 | 2005-08-17 22:18:41 | [diff] [blame] | 131 | { |
| 132 | test -f "$repo/objects/info/alternates" && |
| 133 | cat "$repo/objects/info/alternates"; |
| 134 | echo "$repo/objects" |
| 135 | } >"$D/.git/objects/info/alternates" |
| Junio C Hamano | aae4f42 | 2005-08-15 00:25:57 | [diff] [blame] | 136 | ;; |
| 137 | esac |
| Junio C Hamano | e95ab1e | 2005-07-06 20:04:21 | [diff] [blame] | 138 | |
| 139 | # Make a duplicate of refs and HEAD pointer |
| 140 | HEAD= |
| 141 | if test -f "$repo/HEAD" |
| 142 | then |
| 143 | HEAD=HEAD |
| 144 | fi |
| Junio C Hamano | 229a7ed | 2005-09-23 17:41:40 | [diff] [blame] | 145 | (cd "$repo" && tar cf - refs $HEAD) | |
| 146 | (cd "$D/.git" && tar xf -) || exit 1 |
| Linus Torvalds | 7558ef8 | 2005-07-09 00:07:12 | [diff] [blame] | 147 | ;; |
| 148 | *) |
| Junio C Hamano | 1cadb5a | 2005-07-23 02:11:22 | [diff] [blame] | 149 | case "$repo" in |
| 150 | rsync://*) |
| Junio C Hamano | 4447bad | 2005-09-17 18:56:41 | [diff] [blame] | 151 | rsync $quiet -av --ignore-existing \ |
| 152 | --exclude info "$repo/objects/" "$D/.git/objects/" && |
| 153 | rsync $quiet -av --ignore-existing \ |
| 154 | --exclude info "$repo/refs/" "$D/.git/refs/" || exit |
| 155 | |
| 156 | # Look at objects/info/alternates for rsync -- http will |
| 157 | # support it natively and git native ones will do it on the |
| 158 | # remote end. Not having that file is not a crime. |
| Junio C Hamano | 89d844d | 2005-09-20 06:52:33 | [diff] [blame] | 159 | rsync -q "$repo/objects/info/alternates" \ |
| 160 | "$D/.git/TMP_ALT" 2>/dev/null || |
| Junio C Hamano | 4447bad | 2005-09-17 18:56:41 | [diff] [blame] | 161 | rm -f "$D/.git/TMP_ALT" |
| 162 | if test -f "$D/.git/TMP_ALT" |
| 163 | then |
| Pavel Roskin | 0e9ab02 | 2005-11-11 05:19:04 | [diff] [blame] | 164 | ( cd "$D" && |
| Junio C Hamano | 4447bad | 2005-09-17 18:56:41 | [diff] [blame] | 165 | . git-parse-remote && |
| 166 | resolve_alternates "$repo" <"./.git/TMP_ALT" ) | |
| 167 | while read alt |
| 168 | do |
| 169 | case "$alt" in 'bad alternate: '*) die "$alt";; esac |
| 170 | case "$quiet" in |
| 171 | '') echo >&2 "Getting alternate: $alt" ;; |
| 172 | esac |
| 173 | rsync $quiet -av --ignore-existing \ |
| 174 | --exclude info "$alt" "$D/.git/objects" || exit |
| 175 | done |
| 176 | rm -f "$D/.git/TMP_ALT" |
| 177 | fi |
| Junio C Hamano | 1cadb5a | 2005-07-23 02:11:22 | [diff] [blame] | 178 | ;; |
| 179 | http://*) |
| Junio C Hamano | 0516de3 | 2005-09-05 07:47:39 | [diff] [blame] | 180 | clone_dumb_http "$repo" "$D" |
| Junio C Hamano | 1cadb5a | 2005-07-23 02:11:22 | [diff] [blame] | 181 | ;; |
| 182 | *) |
| 183 | cd "$D" && case "$upload_pack" in |
| 184 | '') git-clone-pack $quiet "$repo" ;; |
| 185 | *) git-clone-pack $quiet "$upload_pack" "$repo" ;; |
| Junio C Hamano | 0a8b4de | 2005-12-13 23:58:00 | [diff] [blame] | 186 | esac || { |
| 187 | echo >&2 "clone-pack from '$repo' failed." |
| 188 | exit 1 |
| 189 | } |
| Junio C Hamano | 1cadb5a | 2005-07-23 02:11:22 | [diff] [blame] | 190 | ;; |
| Junio C Hamano | 6ec311d | 2005-07-14 03:25:54 | [diff] [blame] | 191 | esac |
| Linus Torvalds | 7558ef8 | 2005-07-09 00:07:12 | [diff] [blame] | 192 | ;; |
| 193 | esac |
| Junio C Hamano | 1cadb5a | 2005-07-23 02:11:22 | [diff] [blame] | 194 | |
| Pavel Roskin | 0e9ab02 | 2005-11-11 05:19:04 | [diff] [blame] | 195 | cd "$D" || exit |
| Junio C Hamano | 036a72d | 2005-09-27 00:17:09 | [diff] [blame] | 196 | |
| 197 | if test -f ".git/HEAD" |
| 198 | then |
| Junio C Hamano | e125c1a | 2005-11-02 06:19:36 | [diff] [blame] | 199 | head_points_at=`git-symbolic-ref HEAD` |
| 200 | case "$head_points_at" in |
| 201 | refs/heads/*) |
| 202 | head_points_at=`expr "$head_points_at" : 'refs/heads/\(.*\)'` |
| 203 | mkdir -p .git/remotes && |
| 204 | echo >.git/remotes/origin \ |
| 205 | "URL: $repo |
| Johannes Schindelin | e6c310f | 2005-12-22 22:37:24 | [diff] [blame] | 206 | Pull: $head_points_at:$origin" && |
| 207 | git-update-ref "refs/heads/$origin" $(git-rev-parse HEAD) && |
| Junio C Hamano | 95d117b | 2005-11-06 08:52:57 | [diff] [blame] | 208 | find .git/refs/heads -type f -print | |
| 209 | while read ref |
| 210 | do |
| 211 | head=`expr "$ref" : '.git/refs/heads/\(.*\)'` && |
| 212 | test "$head_points_at" = "$head" || |
| Johannes Schindelin | e6c310f | 2005-12-22 22:37:24 | [diff] [blame] | 213 | test "$origin" = "$head" || |
| Junio C Hamano | 95d117b | 2005-11-06 08:52:57 | [diff] [blame] | 214 | echo "Pull: ${head}:${head}" |
| 215 | done >>.git/remotes/origin |
| Junio C Hamano | e125c1a | 2005-11-02 06:19:36 | [diff] [blame] | 216 | esac |
| 217 | |
| Junio C Hamano | 036a72d | 2005-09-27 00:17:09 | [diff] [blame] | 218 | case "$no_checkout" in |
| 219 | '') |
| 220 | git checkout |
| 221 | esac |
| 222 | fi |