]> git.ipfire.org Git - thirdparty/git.git/blame - git-submodule.sh
config.mak.uname: remove unused the NO_R_TO_GCC_LINKER flag
[thirdparty/git.git] / git-submodule.sh
CommitLineData
70c7ac22
LH
1#!/bin/sh
2#
4c8a9db6 3# git-submodule.sh: add, init, update or list git submodules
70c7ac22
LH
4#
5# Copyright (c) 2007 Lars Hjemli
6
1d5bec8b 7dashless=$(basename "$0" | sed -e 's/-/ /')
68cabbfd
DL
8USAGE="[--quiet] [--cached]
9 or: $dashless [--quiet] add [-b <branch>] [-f|--force] [--name <name>] [--reference <repository>] [--] <repository> [<path>]
64b19ffe 10 or: $dashless [--quiet] status [--cached] [--recursive] [--] [<path>...]
1d5bec8b 11 or: $dashless [--quiet] init [--] [<path>...]
f6a52799 12 or: $dashless [--quiet] deinit [-f|--force] (--all| [--] <path>...)
132f600b 13 or: $dashless [--quiet] update [--init] [--remote] [-N|--no-fetch] [-f|--force] [--checkout|--merge|--rebase] [--[no-]recommend-shallow] [--reference <repository>] [--recursive] [--[no-]single-branch] [--] [<path>...]
b57e8119 14 or: $dashless [--quiet] set-branch (--default|--branch <branch>) [--] <path>
26b06100 15 or: $dashless [--quiet] set-url [--] <path> <newurl>
adc54235 16 or: $dashless [--quiet] summary [--cached|--files] [--summary-limit <n>] [commit] [--] [<path>...]
15fc56a8 17 or: $dashless [--quiet] foreach [--recursive] <command>
c32eaa8a
SB
18 or: $dashless [--quiet] sync [--recursive] [--] [<path>...]
19 or: $dashless [--quiet] absorbgitdirs [--] [<path>...]"
8f321a39 20OPTIONS_SPEC=
091a6eb0 21SUBDIRECTORY_OK=Yes
70c7ac22 22. git-sh-setup
98fcf840 23. git-parse-remote
70c7ac22 24require_work_tree
091a6eb0
JK
25wt_prefix=$(git rev-parse --show-prefix)
26cd_to_toplevel
70c7ac22 27
f1762d77
BW
28# Tell the rest of git that any URLs we get don't come
29# directly from the user, so it can apply policy as appropriate.
30GIT_PROTOCOL_FROM_USER=0
31export GIT_PROTOCOL_FROM_USER
33cfccbb 32
5c08dbbd 33command=
ecda0723 34branch=
d27b876b 35force=
d92a3959 36reference=
70c7ac22 37cached=
48bb3033
GP
38recursive=
39init=
0060fd15 40require_init=
1c244f6e 41files=
06b1abb5 42remote=
31ca3ac3 43nofetch=
32948425 44update=
15fc56a8 45prefix=
73b0898d 46custom_name=
275cd184 47depth=
72c5f883 48progress=
a0ef2934 49dissociate=
132f600b 50single_branch=
65d100c4
LX
51jobs=
52recommend_shallow=
70c7ac22 53
be9d0a3a
HV
54die_if_unmatched ()
55{
56 if test "$1" = "#unmatched"
57 then
c4c02bf1 58 exit ${2:-1}
be9d0a3a
HV
59 fi
60}
61
862ae6cd
RS
62isnumber()
63{
64 n=$(($1 + 0)) 2>/dev/null && test "$n" = "$1"
65}
66
dda63468 67# Given a full hex object ID, is this the zero OID?
68is_zero_oid () {
69 echo "$1" | sane_egrep '^0+$' >/dev/null 2>&1
70}
71
14111fc4
JK
72# Sanitize the local git environment for use within a submodule. We
73# can't simply use clear_local_git_env since we want to preserve some
74# of the settings from GIT_CONFIG_PARAMETERS.
75sanitize_submodule_env()
76{
89044baa 77 save_config=$GIT_CONFIG_PARAMETERS
14111fc4 78 clear_local_git_env
89044baa 79 GIT_CONFIG_PARAMETERS=$save_config
860cba61 80 export GIT_CONFIG_PARAMETERS
14111fc4
JK
81}
82
ecda0723
SV
83#
84# Add a new submodule to the working tree, .gitmodules and the index
85#
ec05df35 86# $@ = repo path
ecda0723
SV
87#
88# optional branch is stored in global branch variable
89#
23a485e3 90cmd_add()
ecda0723 91{
5c08dbbd 92 # parse $args after "submodule ... add".
091a6eb0 93 reference_path=
5c08dbbd
JH
94 while test $# -ne 0
95 do
96 case "$1" in
97 -b | --branch)
98 case "$2" in '') usage ;; esac
99 branch=$2
100 shift
101 ;;
d27b876b
JL
102 -f | --force)
103 force=$1
104 ;;
5c08dbbd 105 -q|--quiet)
2e6a30ef 106 GIT_QUIET=1
5c08dbbd 107 ;;
6d33e1c2
CF
108 --progress)
109 progress=1
110 ;;
d92a3959
MT
111 --reference)
112 case "$2" in '') usage ;; esac
091a6eb0 113 reference_path=$2
d92a3959
MT
114 shift
115 ;;
116 --reference=*)
091a6eb0 117 reference_path="${1#--reference=}"
d92a3959 118 ;;
a0ef2934
CF
119 --dissociate)
120 dissociate=1
121 ;;
73b0898d
JL
122 --name)
123 case "$2" in '') usage ;; esac
124 custom_name=$2
125 shift
126 ;;
275cd184
FG
127 --depth)
128 case "$2" in '') usage ;; esac
129 depth="--depth=$2"
130 shift
131 ;;
132 --depth=*)
133 depth=$1
134 ;;
5c08dbbd
JH
135 --)
136 shift
137 break
138 ;;
139 -*)
140 usage
141 ;;
142 *)
143 break
144 ;;
145 esac
146 shift
147 done
148
76e9bdc4
AO
149 if ! git submodule--helper config --check-writeable >/dev/null 2>&1
150 then
151 die "$(eval_gettext "please make sure that the .gitmodules file is in the working tree")"
152 fi
153
091a6eb0
JK
154 if test -n "$reference_path"
155 then
156 is_absolute_path "$reference_path" ||
157 reference_path="$wt_prefix$reference_path"
158
159 reference="--reference=$reference_path"
160 fi
161
ecda0723 162 repo=$1
64394e3a 163 sm_path=$2
ecda0723 164
64394e3a 165 if test -z "$sm_path"; then
6a066230 166 sm_path=$(printf '%s\n' "$repo" |
1414e578
JL
167 sed -e 's|/$||' -e 's|:*/*\.git$||' -e 's|.*[/:]||g')
168 fi
169
496eeeb1 170 if test -z "$repo" || test -z "$sm_path"; then
ecda0723
SV
171 usage
172 fi
173
091a6eb0
JK
174 is_absolute_path "$sm_path" || sm_path="$wt_prefix$sm_path"
175
ec05df35
ML
176 # assure repo is absolute or relative to parent
177 case "$repo" in
178 ./*|../*)
091a6eb0
JK
179 test -z "$wt_prefix" ||
180 die "$(gettext "Relative path can only be used from the toplevel of the working tree")"
181
ec05df35 182 # dereference source url relative to parent's url
63e95beb 183 realrepo=$(git submodule--helper resolve-relative-url "$repo") || exit
ec05df35
ML
184 ;;
185 *:*|/*)
186 # absolute url
187 realrepo=$repo
188 ;;
189 *)
497ee872 190 die "$(eval_gettext "repo URL: '\$repo' must be absolute or begin with ./|../")"
ec05df35
ML
191 ;;
192 esac
193
db75ada5
MG
194 # normalize path:
195 # multiple //; leading ./; /./; /../; trailing /
64394e3a 196 sm_path=$(printf '%s/\n' "$sm_path" |
db75ada5
MG
197 sed -e '
198 s|//*|/|g
199 s|^\(\./\)*||
8196e728 200 s|/\(\./\)*|/|g
db75ada5
MG
201 :start
202 s|\([^/]*\)/\.\./||
203 tstart
204 s|/*$||
205 ')
619acfc7
SB
206 if test -z "$force"
207 then
208 git ls-files --error-unmatch "$sm_path" > /dev/null 2>&1 &&
209 die "$(eval_gettext "'\$sm_path' already exists in the index")"
210 else
211 git ls-files -s "$sm_path" | sane_grep -v "^160000" > /dev/null 2>&1 &&
212 die "$(eval_gettext "'\$sm_path' already exists in the index and is not a submodule")"
213 fi
ecda0723 214
e1381118
KM
215 if test -d "$sm_path" &&
216 test -z $(git -C "$sm_path" rev-parse --show-cdup 2>/dev/null)
217 then
218 git -C "$sm_path" rev-parse --verify -q HEAD >/dev/null ||
219 die "$(eval_gettext "'\$sm_path' does not have a commit checked out")"
220 fi
221
c8163854 222 if test -z "$force"
d27b876b 223 then
c8163854
KM
224 dryerr=$(git add --dry-run --ignore-missing --no-warn-embedded-repo "$sm_path" 2>&1 >/dev/null)
225 res=$?
226 if test $res -ne 0
227 then
228 echo >&2 "$dryerr"
229 exit $res
230 fi
d27b876b
JL
231 fi
232
73b0898d
JL
233 if test -n "$custom_name"
234 then
235 sm_name="$custom_name"
236 else
237 sm_name="$sm_path"
238 fi
239
0383bbb9
JK
240 if ! git submodule--helper check-name "$sm_name"
241 then
242 die "$(eval_gettext "'$sm_name' is not a valid submodule name")"
243 fi
244
d4264ca3 245 # perhaps the path exists and is already a git repo, else clone it
64394e3a 246 if test -e "$sm_path"
d4264ca3 247 then
496eeeb1 248 if test -d "$sm_path"/.git || test -f "$sm_path"/.git
d4264ca3 249 then
64394e3a 250 eval_gettextln "Adding existing repo at '\$sm_path' to the index"
d4264ca3 251 else
64394e3a 252 die "$(eval_gettext "'\$sm_path' already exists and is not a valid git repo")"
d4264ca3 253 fi
c2f93917 254
d4264ca3 255 else
4b7c286e
JL
256 if test -d ".git/modules/$sm_name"
257 then
258 if test -z "$force"
259 then
0d71dbfd 260 eval_gettextln >&2 "A git directory for '\$sm_name' is found locally with remote(s):"
4b7c286e 261 GIT_DIR=".git/modules/$sm_name" GIT_WORK_TREE=. git remote -v | grep '(fetch)' | sed -e s,^," ", -e s,' (fetch)',, >&2
0d71dbfd
VA
262 die "$(eval_gettextln "\
263If you want to reuse this local git directory instead of cloning again from
264 \$realrepo
265use the '--force' option. If the local git directory is not the correct repo
266or you are unsure what this means choose another name with the '--name' option.")"
4b7c286e 267 else
0d71dbfd 268 eval_gettextln "Reactivating local git directory for submodule '\$sm_name'."
4b7c286e
JL
269 fi
270 fi
a0ef2934 271 git submodule--helper clone ${GIT_QUIET:+--quiet} ${progress:+"--progress"} --prefix "$wt_prefix" --path "$sm_path" --name "$sm_name" --url "$realrepo" ${reference:+"$reference"} ${dissociate:+"--dissociate"} ${depth:+"$depth"} || exit
d851ffb9 272 (
14111fc4 273 sanitize_submodule_env
d851ffb9
JH
274 cd "$sm_path" &&
275 # ash fails to wordsplit ${branch:+-b "$branch"...}
276 case "$branch" in
277 '') git checkout -f -q ;;
278 ?*) git checkout -f -q -B "$branch" "origin/$branch" ;;
279 esac
280 ) || die "$(eval_gettext "Unable to checkout submodule '\$sm_path'")"
d4264ca3 281 fi
73b0898d 282 git config submodule."$sm_name".url "$realrepo"
d4264ca3 283
53213994 284 git add --no-warn-embedded-repo $force "$sm_path" ||
64394e3a 285 die "$(eval_gettext "Failed to add submodule '\$sm_path'")"
ecda0723 286
b2faad44
AO
287 git submodule--helper config submodule."$sm_name".path "$sm_path" &&
288 git submodule--helper config submodule."$sm_name".url "$repo" &&
b9289227
TK
289 if test -n "$branch"
290 then
b2faad44 291 git submodule--helper config submodule."$sm_name".branch "$branch"
b9289227 292 fi &&
31991b02 293 git add --force .gitmodules ||
64394e3a 294 die "$(eval_gettext "Failed to register submodule '\$sm_path'")"
1b614c07
BW
295
296 # NEEDSWORK: In a multi-working-tree world, this needs to be
297 # set in the per-worktree config.
298 if git config --get submodule.active >/dev/null
299 then
300 # If the submodule being adding isn't already covered by the
301 # current configured pathspec, set the submodule's active flag
302 if ! git submodule--helper is-active "$sm_path"
303 then
304 git config submodule."$sm_name".active "true"
305 fi
306 else
307 git config submodule."$sm_name".active "true"
308 fi
ecda0723
SV
309}
310
19a31f9c
ML
311#
312# Execute an arbitrary command sequence in each checked out
313# submodule
314#
315# $@ = command to execute
316#
317cmd_foreach()
318{
1d5bec8b
JH
319 # parse $args after "submodule ... foreach".
320 while test $# -ne 0
321 do
322 case "$1" in
323 -q|--quiet)
324 GIT_QUIET=1
325 ;;
15fc56a8
JH
326 --recursive)
327 recursive=1
328 ;;
1d5bec8b
JH
329 -*)
330 usage
331 ;;
332 *)
333 break
334 ;;
335 esac
336 shift
337 done
338
a282f5a9 339 git ${wt_prefix:+-C "$wt_prefix"} ${prefix:+--super-prefix "$prefix"} submodule--helper foreach ${GIT_QUIET:+--quiet} ${recursive:+--recursive} -- "$@"
19a31f9c
ML
340}
341
70c7ac22 342#
211b7f19 343# Register submodules in .git/config
70c7ac22
LH
344#
345# $@ = requested paths (default to all)
346#
23a485e3 347cmd_init()
70c7ac22 348{
5c08dbbd
JH
349 # parse $args after "submodule ... init".
350 while test $# -ne 0
351 do
352 case "$1" in
353 -q|--quiet)
2e6a30ef 354 GIT_QUIET=1
5c08dbbd
JH
355 ;;
356 --)
357 shift
358 break
359 ;;
360 -*)
361 usage
362 ;;
363 *)
364 break
365 ;;
366 esac
367 shift
368 done
369
a282f5a9 370 git ${wt_prefix:+-C "$wt_prefix"} ${prefix:+--super-prefix "$prefix"} submodule--helper init ${GIT_QUIET:+--quiet} -- "$@"
70c7ac22
LH
371}
372
cf419828
JL
373#
374# Unregister submodules from .git/config and remove their work tree
375#
cf419828
JL
376cmd_deinit()
377{
378 # parse $args after "submodule ... deinit".
f6a52799 379 deinit_all=
cf419828
JL
380 while test $# -ne 0
381 do
382 case "$1" in
383 -f|--force)
384 force=$1
385 ;;
386 -q|--quiet)
387 GIT_QUIET=1
388 ;;
f6a52799
SB
389 --all)
390 deinit_all=t
391 ;;
cf419828
JL
392 --)
393 shift
394 break
395 ;;
396 -*)
397 usage
398 ;;
399 *)
400 break
401 ;;
402 esac
403 shift
404 done
405
a282f5a9 406 git ${wt_prefix:+-C "$wt_prefix"} submodule--helper deinit ${GIT_QUIET:+--quiet} ${prefix:+--prefix "$prefix"} ${force:+--force} ${deinit_all:+--all} -- "$@"
cf419828
JL
407}
408
fb43e31f 409is_tip_reachable () (
01e1d544 410 sanitize_submodule_env &&
fb43e31f
SB
411 cd "$1" &&
412 rev=$(git rev-list -n 1 "$2" --not --all 2>/dev/null) &&
413 test -z "$rev"
414)
415
416fetch_in_submodule () (
01e1d544 417 sanitize_submodule_env &&
fb43e31f
SB
418 cd "$1" &&
419 case "$2" in
420 '')
421 git fetch ;;
422 *)
6cbf454a
SB
423 shift
424 git fetch $(get_default_remote) "$@" ;;
fb43e31f
SB
425 esac
426)
427
70c7ac22 428#
211b7f19 429# Update each submodule path to correct revision, using clone and checkout as needed
70c7ac22
LH
430#
431# $@ = requested paths (default to all)
432#
23a485e3 433cmd_update()
70c7ac22 434{
5c08dbbd
JH
435 # parse $args after "submodule ... update".
436 while test $# -ne 0
437 do
438 case "$1" in
439 -q|--quiet)
2e6a30ef 440 GIT_QUIET=1
5c08dbbd 441 ;;
e84c3cf3 442 -v)
3ad0401e 443 unset GIT_QUIET
e84c3cf3 444 ;;
72c5f883 445 --progress)
c7199e3a 446 progress=1
72c5f883 447 ;;
be4d2c83 448 -i|--init)
d92a3959 449 init=1
be4d2c83 450 ;;
0060fd15
JS
451 --require-init)
452 init=1
453 require_init=1
454 ;;
06b1abb5
TK
455 --remote)
456 remote=1
457 ;;
31ca3ac3 458 -N|--no-fetch)
31ca3ac3
FF
459 nofetch=1
460 ;;
9db31bdf
NMC
461 -f|--force)
462 force=$1
463 ;;
ca2cedba 464 -r|--rebase)
32948425 465 update="rebase"
ca2cedba 466 ;;
d92a3959
MT
467 --reference)
468 case "$2" in '') usage ;; esac
469 reference="--reference=$2"
98dbe63d 470 shift
d92a3959
MT
471 ;;
472 --reference=*)
473 reference="$1"
d92a3959 474 ;;
a0ef2934
CF
475 --dissociate)
476 dissociate=1
477 ;;
42b49178 478 -m|--merge)
42b49178
JH
479 update="merge"
480 ;;
b13fd5c1 481 --recursive)
b13fd5c1
JH
482 recursive=1
483 ;;
efc5fb6a
JH
484 --checkout)
485 update="checkout"
486 ;;
abed000a
SB
487 --recommend-shallow)
488 recommend_shallow="--recommend-shallow"
489 ;;
490 --no-recommend-shallow)
491 recommend_shallow="--no-recommend-shallow"
492 ;;
275cd184
FG
493 --depth)
494 case "$2" in '') usage ;; esac
495 depth="--depth=$2"
496 shift
497 ;;
498 --depth=*)
499 depth=$1
500 ;;
2335b870
SB
501 -j|--jobs)
502 case "$2" in '') usage ;; esac
503 jobs="--jobs=$2"
504 shift
505 ;;
506 --jobs=*)
507 jobs=$1
508 ;;
132f600b
ES
509 --single-branch)
510 single_branch="--single-branch"
511 ;;
512 --no-single-branch)
513 single_branch="--no-single-branch"
514 ;;
5c08dbbd
JH
515 --)
516 shift
517 break
518 ;;
519 -*)
520 usage
521 ;;
522 *)
523 break
524 ;;
525 esac
98dbe63d 526 shift
5c08dbbd
JH
527 done
528
d92a3959
MT
529 if test -n "$init"
530 then
531 cmd_init "--" "$@" || return
532 fi
533
48308681
SB
534 {
535 git submodule--helper update-clone ${GIT_QUIET:+--quiet} \
c7199e3a 536 ${progress:+"--progress"} \
48308681
SB
537 ${wt_prefix:+--prefix "$wt_prefix"} \
538 ${prefix:+--recursive-prefix "$prefix"} \
539 ${update:+--update "$update"} \
5f50f33e 540 ${reference:+"$reference"} \
a0ef2934 541 ${dissociate:+"--dissociate"} \
48308681 542 ${depth:+--depth "$depth"} \
0060fd15 543 ${require_init:+--require-init} \
132f600b 544 $single_branch \
c7199e3a
CF
545 $recommend_shallow \
546 $jobs \
a282f5a9 547 -- \
c4c02bf1 548 "$@" || echo "#unmatched" $?
48308681 549 } | {
15ffb7cd 550 err=
9eca701f 551 while read -r quickabort sha1 just_cloned sm_path
70c7ac22 552 do
9eca701f 553 die_if_unmatched "$quickabort" "$sha1"
48308681 554
5d124f41 555 git submodule--helper ensure-core-worktree "$sm_path" || exit 1
74d4731d 556
ee69b2a9 557 update_module=$(git submodule--helper update-module-mode $just_cloned "$sm_path" $update)
efc5fb6a 558
44431df0 559 displaypath=$(git submodule--helper relative-path "$prefix$sm_path" "$wt_prefix")
091a6eb0 560
48308681 561 if test $just_cloned -eq 1
d851ffb9 562 then
bf2d8246
LH
563 subsha1=
564 else
14111fc4 565 subsha1=$(sanitize_submodule_env; cd "$sm_path" &&
5be60078 566 git rev-parse --verify HEAD) ||
091a6eb0 567 die "$(eval_gettext "Unable to find current revision in submodule path '\$displaypath'")"
70c7ac22 568 fi
211b7f19 569
06b1abb5
TK
570 if test -n "$remote"
571 then
92bbe7cc 572 branch=$(git submodule--helper remote-branch "$sm_path")
06b1abb5
TK
573 if test -z "$nofetch"
574 then
575 # Fetch remote before determining tracking $sha1
6cbf454a 576 fetch_in_submodule "$sm_path" $depth ||
06b1abb5
TK
577 die "$(eval_gettext "Unable to fetch in submodule path '\$sm_path'")"
578 fi
14111fc4
JK
579 remote_name=$(sanitize_submodule_env; cd "$sm_path" && get_default_remote)
580 sha1=$(sanitize_submodule_env; cd "$sm_path" &&
06b1abb5 581 git rev-parse --verify "${remote_name}/${branch}") ||
c87302bf 582 die "$(eval_gettext "Unable to find current \${remote_name}/\${branch} revision in submodule path '\$sm_path'")"
06b1abb5
TK
583 fi
584
496eeeb1 585 if test "$subsha1" != "$sha1" || test -n "$force"
70c7ac22 586 then
9db31bdf
NMC
587 subforce=$force
588 # If we don't already have a -f flag and the submodule has never been checked out
496eeeb1 589 if test -z "$subsha1" && test -z "$force"
b9b378a0 590 then
9db31bdf 591 subforce="-f"
b9b378a0 592 fi
31ca3ac3
FF
593
594 if test -z "$nofetch"
595 then
e5f522d6
JL
596 # Run fetch only if $sha1 isn't present or it
597 # is not reachable from a ref.
fb43e31f 598 is_tip_reachable "$sm_path" "$sha1" ||
6cbf454a 599 fetch_in_submodule "$sm_path" $depth ||
bd5e567d 600 say "$(eval_gettext "Unable to fetch in submodule path '\$displaypath'; trying to directly fetch \$sha1:")"
fb43e31f
SB
601
602 # Now we tried the usual fetch, but $sha1 may
603 # not be reachable from any of the refs
604 is_tip_reachable "$sm_path" "$sha1" ||
6cbf454a 605 fetch_in_submodule "$sm_path" $depth "$sha1" ||
c87302bf 606 die "$(eval_gettext "Fetched in submodule path '\$displaypath', but it did not contain \$sha1. Direct fetching of that commit failed.")"
31ca3ac3
FF
607 fi
608
877449c1 609 must_die_on_failure=
32948425 610 case "$update_module" in
a2aed08b
TK
611 checkout)
612 command="git checkout $subforce -q"
613 die_msg="$(eval_gettext "Unable to checkout '\$sha1' in submodule path '\$displaypath'")"
614 say_msg="$(eval_gettext "Submodule path '\$displaypath': checked out '\$sha1'")"
615 ;;
32948425 616 rebase)
3ad0401e 617 command="git rebase ${GIT_QUIET:+--quiet}"
091a6eb0
JK
618 die_msg="$(eval_gettext "Unable to rebase '\$sha1' in submodule path '\$displaypath'")"
619 say_msg="$(eval_gettext "Submodule path '\$displaypath': rebased into '\$sha1'")"
877449c1 620 must_die_on_failure=yes
32948425 621 ;;
42b49178 622 merge)
3ad0401e 623 command="git merge ${GIT_QUIET:+--quiet}"
091a6eb0
JK
624 die_msg="$(eval_gettext "Unable to merge '\$sha1' in submodule path '\$displaypath'")"
625 say_msg="$(eval_gettext "Submodule path '\$displaypath': merged in '\$sha1'")"
877449c1 626 must_die_on_failure=yes
42b49178 627 ;;
6cb5728c
CP
628 !*)
629 command="${update_module#!}"
b08238ac
SB
630 die_msg="$(eval_gettext "Execution of '\$command \$sha1' failed in submodule path '\$displaypath'")"
631 say_msg="$(eval_gettext "Submodule path '\$displaypath': '\$command \$sha1'")"
6cb5728c
CP
632 must_die_on_failure=yes
633 ;;
32948425 634 *)
ff03d930 635 die "$(eval_gettext "Invalid update mode '$update_module' for submodule path '$path'")"
32948425 636 esac
70c7ac22 637
14111fc4 638 if (sanitize_submodule_env; cd "$sm_path" && $command "$sha1")
15ffb7cd 639 then
ff968f03 640 say "$say_msg"
877449c1
JH
641 elif test -n "$must_die_on_failure"
642 then
ff968f03 643 die_with_status 2 "$die_msg"
15ffb7cd 644 else
ff968f03 645 err="${err};$die_msg"
877449c1 646 continue
15ffb7cd 647 fi
70c7ac22 648 fi
b13fd5c1
JH
649
650 if test -n "$recursive"
651 then
75bf5e60 652 (
44431df0 653 prefix=$(git submodule--helper relative-path "$prefix$sm_path/" "$wt_prefix")
3604242f 654 wt_prefix=
14111fc4 655 sanitize_submodule_env
75bf5e60 656 cd "$sm_path" &&
36141282 657 eval cmd_update
75bf5e60 658 )
15ffb7cd
FG
659 res=$?
660 if test $res -gt 0
661 then
091a6eb0 662 die_msg="$(eval_gettext "Failed to recurse into submodule path '\$displaypath'")"
bb9d91b4 663 if test $res -ne 2
15ffb7cd 664 then
ff968f03 665 err="${err};$die_msg"
15ffb7cd
FG
666 continue
667 else
ff968f03 668 die_with_status $res "$die_msg"
15ffb7cd
FG
669 fi
670 fi
b13fd5c1 671 fi
70c7ac22 672 done
15ffb7cd
FG
673
674 if test -n "$err"
675 then
676 OIFS=$IFS
677 IFS=';'
678 for e in $err
679 do
680 if test -n "$e"
681 then
682 echo >&2 "$e"
683 fi
684 done
685 IFS=$OIFS
686 exit 1
687 fi
688 }
70c7ac22
LH
689}
690
b57e8119
DL
691#
692# Configures a submodule's default branch
693#
694# $@ = requested path
695#
696cmd_set_branch() {
2964d6e5 697 default=
b57e8119
DL
698 branch=
699
700 while test $# -ne 0
701 do
702 case "$1" in
703 -q|--quiet)
704 # we don't do anything with this but we need to accept it
705 ;;
706 -d|--default)
2964d6e5 707 default=1
b57e8119
DL
708 ;;
709 -b|--branch)
710 case "$2" in '') usage ;; esac
711 branch=$2
712 shift
713 ;;
714 --)
715 shift
716 break
717 ;;
718 -*)
719 usage
720 ;;
721 *)
722 break
723 ;;
724 esac
725 shift
726 done
727
2964d6e5 728 git ${wt_prefix:+-C "$wt_prefix"} ${prefix:+--super-prefix "$prefix"} submodule--helper set-branch ${GIT_QUIET:+--quiet} ${branch:+--branch "$branch"} ${default:+--default} -- "$@"
b57e8119
DL
729}
730
26b06100
DL
731#
732# Configures a submodule's remote url
733#
734# $@ = requested path, requested url
735#
736cmd_set_url() {
737 while test $# -ne 0
738 do
739 case "$1" in
740 -q|--quiet)
741 GIT_QUIET=1
742 ;;
743 --)
744 shift
745 break
746 ;;
747 -*)
748 usage
749 ;;
750 *)
751 break
752 ;;
753 esac
754 shift
755 done
756
6417cf9c 757 git ${wt_prefix:+-C "$wt_prefix"} ${prefix:+--super-prefix "$prefix"} submodule--helper set-url ${GIT_QUIET:+--quiet} -- "$@"
26b06100
DL
758}
759
28f9af5d
PY
760#
761# Show commit summary for submodules in index or working tree
762#
763# If '--cached' is given, show summary between index and given commit,
764# or between working tree and given commit
765#
766# $@ = [commit (default 'HEAD'),] requested paths (default all)
767#
768cmd_summary() {
f2dc06a3 769 summary_limit=-1
d0f64dd4 770 for_status=
1c244f6e 771 diff_cmd=diff-index
f2dc06a3 772
28f9af5d
PY
773 # parse $args after "submodule ... summary".
774 while test $# -ne 0
775 do
776 case "$1" in
777 --cached)
778 cached="$1"
779 ;;
1c244f6e
JL
780 --files)
781 files="$1"
782 ;;
d0f64dd4
PY
783 --for-status)
784 for_status="$1"
785 ;;
f2dc06a3 786 -n|--summary-limit)
862ae6cd
RS
787 summary_limit="$2"
788 isnumber "$summary_limit" || usage
f2dc06a3
PY
789 shift
790 ;;
862ae6cd
RS
791 --summary-limit=*)
792 summary_limit="${1#--summary-limit=}"
793 isnumber "$summary_limit" || usage
794 ;;
28f9af5d
PY
795 --)
796 shift
797 break
798 ;;
799 -*)
800 usage
801 ;;
802 *)
803 break
804 ;;
805 esac
806 shift
807 done
bffe71f4 808
e83e3333 809 git ${wt_prefix:+-C "$wt_prefix"} submodule--helper summary ${prefix:+--prefix "$prefix"} ${files:+--files} ${cached:+--cached} ${for_status:+--for-status} ${summary_limit:+-n $summary_limit} -- "$@"
28f9af5d 810}
70c7ac22 811#
941987a5 812# List all submodules, prefixed with:
70c7ac22
LH
813# - submodule not initialized
814# + different revision checked out
815#
816# If --cached was specified the revision in the index will be printed
817# instead of the currently checked out revision.
818#
819# $@ = requested paths (default to all)
820#
23a485e3 821cmd_status()
70c7ac22 822{
5c08dbbd
JH
823 # parse $args after "submodule ... status".
824 while test $# -ne 0
825 do
826 case "$1" in
827 -q|--quiet)
2e6a30ef 828 GIT_QUIET=1
5c08dbbd
JH
829 ;;
830 --cached)
831 cached=1
832 ;;
64b19ffe
JH
833 --recursive)
834 recursive=1
835 ;;
5c08dbbd
JH
836 --)
837 shift
838 break
839 ;;
840 -*)
841 usage
842 ;;
843 *)
844 break
845 ;;
846 esac
847 shift
848 done
849
a282f5a9 850 git ${wt_prefix:+-C "$wt_prefix"} ${prefix:+--super-prefix "$prefix"} submodule--helper status ${GIT_QUIET:+--quiet} ${cached:+--cached} ${recursive:+--recursive} -- "$@"
70c7ac22 851}
2327f61e
DA
852#
853# Sync remote urls for submodules
854# This makes the value for remote.$remote.url match the value
855# specified in .gitmodules.
856#
857cmd_sync()
858{
859 while test $# -ne 0
860 do
861 case "$1" in
862 -q|--quiet)
2e6a30ef 863 GIT_QUIET=1
2327f61e
DA
864 shift
865 ;;
82f49f29
PH
866 --recursive)
867 recursive=1
868 shift
869 ;;
2327f61e
DA
870 --)
871 shift
872 break
873 ;;
874 -*)
875 usage
876 ;;
877 *)
878 break
879 ;;
880 esac
881 done
e7849a96 882
a282f5a9 883 git ${wt_prefix:+-C "$wt_prefix"} ${prefix:+--super-prefix "$prefix"} submodule--helper sync ${GIT_QUIET:+--quiet} ${recursive:+--recursive} -- "$@"
2327f61e 884}
70c7ac22 885
f6f85861
SB
886cmd_absorbgitdirs()
887{
888 git submodule--helper absorb-git-dirs --prefix "$wt_prefix" "$@"
889}
890
5c08dbbd
JH
891# This loop parses the command line arguments to find the
892# subcommand name to dispatch. Parsing of the subcommand specific
893# options are primarily done by the subcommand implementations.
894# Subcommand specific options such as --branch and --cached are
895# parsed here as well, for backward compatibility.
896
897while test $# != 0 && test -z "$command"
70c7ac22
LH
898do
899 case "$1" in
26b06100 900 add | foreach | init | deinit | update | set-branch | set-url | status | summary | sync | absorbgitdirs)
5c08dbbd 901 command=$1
70c7ac22
LH
902 ;;
903 -q|--quiet)
2e6a30ef 904 GIT_QUIET=1
70c7ac22 905 ;;
ecda0723
SV
906 -b|--branch)
907 case "$2" in
908 '')
909 usage
910 ;;
911 esac
912 branch="$2"; shift
913 ;;
70c7ac22 914 --cached)
28f9af5d 915 cached="$1"
70c7ac22
LH
916 ;;
917 --)
918 break
919 ;;
920 -*)
921 usage
922 ;;
923 *)
924 break
925 ;;
926 esac
927 shift
928done
929
5c08dbbd 930# No command word defaults to "status"
af9c9f97
RR
931if test -z "$command"
932then
933 if test $# = 0
934 then
935 command=status
936 else
937 usage
938 fi
939fi
5c08dbbd 940
b57e8119
DL
941# "-b branch" is accepted only by "add" and "set-branch"
942if test -n "$branch" && (test "$command" != add || test "$command" != set-branch)
5c08dbbd 943then
ecda0723 944 usage
5c08dbbd
JH
945fi
946
28f9af5d 947# "--cached" is accepted only by "status" and "summary"
496eeeb1 948if test -n "$cached" && test "$command" != status && test "$command" != summary
5c08dbbd 949then
70c7ac22 950 usage
5c08dbbd
JH
951fi
952
b57e8119 953"cmd_$(echo $command | sed -e s/-/_/g)" "$@"