Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
git-mirror
/
git
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Files
89d844d
Documentation
compat
debian
mozilla-sha1
ppc
t
templates
.gitignore
COPYING
INSTALL
Makefile
README
apply.c
blob.c
blob.h
cache.h
cat-file.c
checkout-index.c
clone-pack.c
cmd-rename.sh
commit-tree.c
commit.c
commit.h
connect.c
convert-objects.c
count-delta.c
count-delta.h
csum-file.c
csum-file.h
daemon.c
date.c
delta.h
diff-delta.c
diff-files.c
diff-helper.c
diff-index.c
diff-stages.c
diff-tree.c
diff.c
diff.h
diffcore-break.c
diffcore-order.c
diffcore-pathspec.c
diffcore-pickaxe.c
diffcore-rename.c
diffcore.h
entry.c
epoch.c
epoch.h
export.c
fetch-pack.c
fetch.c
fetch.h
fsck-objects.c
get-tar-commit-id.c
git-add.sh
git-applymbox.sh
git-applypatch.sh
git-archimport.perl
git-bisect.sh
git-branch.sh
git-checkout.sh
git-cherry.sh
git-clone.sh
git-commit.sh
git-core.spec.in
git-count-objects.sh
git-cvsimport.perl
git-diff.sh
git-external-diff-script
git-fetch.sh
git-format-patch.sh
git-grep.sh
git-log.sh
git-ls-remote.sh
git-merge-octopus.sh
git-merge-one-file.sh
git-merge-recursive.py
git-merge-resolve.sh
git-merge-stupid.sh
git-merge.sh
git-octopus.sh
git-parse-remote.sh
git-prune.sh
git-pull.sh
git-push.sh
git-rebase.sh
git-relink.perl
git-rename.perl
git-repack.sh
git-request-pull.sh
git-reset.sh
git-resolve.sh
git-revert.sh
git-send-email.perl
git-sh-setup.sh
git-shortlog.perl
git-status.sh
git-tag.sh
git-verify-tag.sh
git-whatchanged.sh
git.sh
gitMergeCommon.py
gitk
hash-object.c
http-fetch.c
ident.c
index.c
init-db.c
local-fetch.c
ls-files.c
ls-tree.c
mailinfo.c
mailsplit.c
merge-base.c
merge-index.c
mktag.c
object.c
object.h
pack-check.c
pack-objects.c
pack.h
patch-delta.c
patch-id.c
path.c
peek-remote.c
pkt-line.c
pkt-line.h
prune-packed.c
quote.c
quote.h
read-cache.c
read-tree.c
receive-pack.c
refs.c
refs.h
rev-list.c
rev-parse.c
rev-tree.c
rsh.c
rsh.h
run-command.c
run-command.h
send-pack.c
server-info.c
setup.c
sha1_file.c
sha1_name.c
show-branch.c
show-index.c
ssh-fetch.c
ssh-pull.c
ssh-push.c
ssh-upload.c
strbuf.c
strbuf.h
stripspace.c
tag.c
tag.h
tar-tree.c
test-date.c
test-delta.c
tree.c
tree.h
unpack-file.c
unpack-objects.c
update-index.c
update-server-info.c
upload-pack.c
usage.c
var.c
verify-pack.c
write-tree.c
Breadcrumbs
git
/
git-clone.sh
Blame
Blame
Latest commit
History
History
executable file
·
193 lines (175 loc) · 4.32 KB
Breadcrumbs
git
/
git-clone.sh
Top
File metadata and controls
Code
Blame
executable file
·
193 lines (175 loc) · 4.32 KB
Raw
#!/bin/sh # # Copyright (c) 2005, Linus Torvalds # Copyright (c) 2005, Junio C Hamano # # Clone a repository into a different directory that does not yet exist. # See git-sh-setup why. unset CDPATH usage() { echo >&2 "* git clone [-l [-s]] [-q] [-u <upload-pack>] <repo> <dir>" exit 1 } get_repo_base() { (cd "$1" && (cd .git ; pwd)) 2> /dev/null } if [ -n "$GIT_SSL_NO_VERIFY" ]; then curl_extra_args="-k" fi http_fetch () { # $1 = Remote, $2 = Local curl -nsf $curl_extra_args "$1" >"$2" } clone_dumb_http () { # $1 - remote, $2 - local cd "$2" && clone_tmp='.git/clone-tmp' && mkdir -p "$clone_tmp" || exit 1 http_fetch "$1/info/refs" "$clone_tmp/refs" && http_fetch "$1/objects/info/packs" "$clone_tmp/packs" || { echo >&2 "Cannot get remote repository information. Perhaps git-update-server-info needs to be run there?" exit 1; } while read type name do case "$type" in P) ;; *) continue ;; esac && idx=`expr "$name" : '\(.*\)\.pack'`.idx http_fetch "$1/objects/pack/$name" ".git/objects/pack/$name" && http_fetch "$1/objects/pack/$idx" ".git/objects/pack/$idx" && git-verify-pack ".git/objects/pack/$idx" || exit 1 done <"$clone_tmp/packs" while read sha1 refname do name=`expr "$refname" : 'refs/\(.*\)'` && git-http-fetch -v -a -w "$name" "$name" "$1/" || exit 1 done <"$clone_tmp/refs" rm -fr "$clone_tmp" } quiet= use_local=no local_shared=no upload_pack= while case "$#,$1" in 0,*) break ;; *,-l|*,--l|*,--lo|*,--loc|*,--loca|*,--local) use_local=yes ;; *,-s|*,--s|*,--sh|*,--sha|*,--shar|*,--share|*,--shared) local_shared=yes ;; *,-q|*,--quiet) quiet=-q ;; 1,-u|1,--upload-pack) usage ;; *,-u|*,--upload-pack) shift upload_pack="--exec=$1" ;; *,-*) usage ;; *) break ;; esac do shift done # Turn the source into an absolute path if # it is local repo="$1" local=no if base=$(get_repo_base "$repo"); then repo="$base" local=yes fi dir="$2" mkdir "$dir" && D=$( (cd "$dir" && git-init-db && pwd) ) && test -d "$D" || usage # We do local magic only when the user tells us to. case "$local,$use_local" in yes,yes) ( cd "$repo/objects" ) || { echo >&2 "-l flag seen but $repo is not local." exit 1 } case "$local_shared" in no) # See if we can hardlink and drop "l" if not. sample_file=$(cd "$repo" && \ find objects -type f -print | sed -e 1q) # objects directory should not be empty since we are cloning! test -f "$repo/$sample_file" || exit l= if ln "$repo/$sample_file" "$D/.git/objects/sample" 2>/dev/null then l=l fi && rm -f "$D/.git/objects/sample" && cd "$repo" && find objects -type f -print | cpio -puamd$l "$D/.git/" || exit 1 ;; yes) mkdir -p "$D/.git/objects/info" { test -f "$repo/objects/info/alternates" && cat "$repo/objects/info/alternates"; echo "$repo/objects" } >"$D/.git/objects/info/alternates" ;; esac # Make a duplicate of refs and HEAD pointer HEAD= if test -f "$repo/HEAD" then HEAD=HEAD fi tar Ccf "$repo" - refs $HEAD | tar Cxf "$D/.git" - || exit 1 ;; *) case "$repo" in rsync://*) rsync $quiet -av --ignore-existing \ --exclude info "$repo/objects/" "$D/.git/objects/" && rsync $quiet -av --ignore-existing \ --exclude info "$repo/refs/" "$D/.git/refs/" || exit # Look at objects/info/alternates for rsync -- http will # support it natively and git native ones will do it on the # remote end. Not having that file is not a crime. rsync -q "$repo/objects/info/alternates" \ "$D/.git/TMP_ALT" 2>/dev/null || rm -f "$D/.git/TMP_ALT" if test -f "$D/.git/TMP_ALT" then ( cd $D && . git-parse-remote && resolve_alternates "$repo" <"./.git/TMP_ALT" ) | while read alt do case "$alt" in 'bad alternate: '*) die "$alt";; esac case "$quiet" in '') echo >&2 "Getting alternate: $alt" ;; esac rsync $quiet -av --ignore-existing \ --exclude info "$alt" "$D/.git/objects" || exit done rm -f "$D/.git/TMP_ALT" fi ;; http://*) clone_dumb_http "$repo" "$D" ;; *) cd "$D" && case "$upload_pack" in '') git-clone-pack $quiet "$repo" ;; *) git-clone-pack $quiet "$upload_pack" "$repo" ;; esac ;; esac ;; esac # Update origin. mkdir -p "$D/.git/remotes/" && rm -f "$D/.git/remotes/origin" && echo >"$D/.git/remotes/origin" \ "URL: $repo Pull: master:origin"
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
You can’t perform that action at this time.