credential: parse URL without host as empty host, not unset
[alt-git.git] / git-submodule.sh
blob73594e0e35d094a329fecbe3e59e2aac6630ad6c
1 #!/bin/sh
3 # git-submodule.sh: add, init, update or list git submodules
5 # Copyright (c) 2007 Lars Hjemli
7 dashless=$(basename "$0" | sed -e 's/-/ /')
8 USAGE="[--quiet] add [-b <branch>] [-f|--force] [--name <name>] [--reference <repository>] [--] <repository> [<path>]
9 or: $dashless [--quiet] status [--cached] [--recursive] [--] [<path>...]
10 or: $dashless [--quiet] init [--] [<path>...]
11 or: $dashless [--quiet] deinit [-f|--force] (--all| [--] <path>...)
12 or: $dashless [--quiet] update [--init] [--remote] [-N|--no-fetch] [-f|--force] [--checkout|--merge|--rebase] [--[no-]recommend-shallow] [--reference <repository>] [--recursive] [--] [<path>...]
13 or: $dashless [--quiet] summary [--cached|--files] [--summary-limit <n>] [commit] [--] [<path>...]
14 or: $dashless [--quiet] foreach [--recursive] <command>
15 or: $dashless [--quiet] sync [--recursive] [--] [<path>...]
16 or: $dashless [--quiet] absorbgitdirs [--] [<path>...]"
17 OPTIONS_SPEC=
18 SUBDIRECTORY_OK=Yes
19 . git-sh-setup
20 . git-parse-remote
21 require_work_tree
22 wt_prefix=$(git rev-parse --show-prefix)
23 cd_to_toplevel
25 # Tell the rest of git that any URLs we get don't come
26 # directly from the user, so it can apply policy as appropriate.
27 GIT_PROTOCOL_FROM_USER=0
28 export GIT_PROTOCOL_FROM_USER
30 command=
31 branch=
32 force=
33 reference=
34 cached=
35 recursive=
36 init=
37 require_init=
38 files=
39 remote=
40 nofetch=
41 update=
42 prefix=
43 custom_name=
44 depth=
45 progress=
47 die_if_unmatched ()
49 if test "$1" = "#unmatched"
50 then
51 exit ${2:-1}
56 # Print a submodule configuration setting
58 # $1 = submodule name
59 # $2 = option name
60 # $3 = default value
62 # Checks in the usual git-config places first (for overrides),
63 # otherwise it falls back on .gitmodules. This allows you to
64 # distribute project-wide defaults in .gitmodules, while still
65 # customizing individual repositories if necessary. If the option is
66 # not in .gitmodules either, print a default value.
68 get_submodule_config () {
69 name="$1"
70 option="$2"
71 default="$3"
72 value=$(git config submodule."$name"."$option")
73 if test -z "$value"
74 then
75 value=$(git config -f .gitmodules submodule."$name"."$option")
77 printf '%s' "${value:-$default}"
80 isnumber()
82 n=$(($1 + 0)) 2>/dev/null && test "$n" = "$1"
85 # Sanitize the local git environment for use within a submodule. We
86 # can't simply use clear_local_git_env since we want to preserve some
87 # of the settings from GIT_CONFIG_PARAMETERS.
88 sanitize_submodule_env()
90 save_config=$GIT_CONFIG_PARAMETERS
91 clear_local_git_env
92 GIT_CONFIG_PARAMETERS=$save_config
93 export GIT_CONFIG_PARAMETERS
97 # Add a new submodule to the working tree, .gitmodules and the index
99 # $@ = repo path
101 # optional branch is stored in global branch variable
103 cmd_add()
105 # parse $args after "submodule ... add".
106 reference_path=
107 while test $# -ne 0
109 case "$1" in
110 -b | --branch)
111 case "$2" in '') usage ;; esac
112 branch=$2
113 shift
115 -f | --force)
116 force=$1
118 -q|--quiet)
119 GIT_QUIET=1
121 --reference)
122 case "$2" in '') usage ;; esac
123 reference_path=$2
124 shift
126 --reference=*)
127 reference_path="${1#--reference=}"
129 --name)
130 case "$2" in '') usage ;; esac
131 custom_name=$2
132 shift
134 --depth)
135 case "$2" in '') usage ;; esac
136 depth="--depth=$2"
137 shift
139 --depth=*)
140 depth=$1
143 shift
144 break
147 usage
150 break
152 esac
153 shift
154 done
156 if test -n "$reference_path"
157 then
158 is_absolute_path "$reference_path" ||
159 reference_path="$wt_prefix$reference_path"
161 reference="--reference=$reference_path"
164 repo=$1
165 sm_path=$2
167 if test -z "$sm_path"; then
168 sm_path=$(printf '%s\n' "$repo" |
169 sed -e 's|/$||' -e 's|:*/*\.git$||' -e 's|.*[/:]||g')
172 if test -z "$repo" || test -z "$sm_path"; then
173 usage
176 is_absolute_path "$sm_path" || sm_path="$wt_prefix$sm_path"
178 # assure repo is absolute or relative to parent
179 case "$repo" in
180 ./*|../*)
181 test -z "$wt_prefix" ||
182 die "$(gettext "Relative path can only be used from the toplevel of the working tree")"
184 # dereference source url relative to parent's url
185 realrepo=$(git submodule--helper resolve-relative-url "$repo") || exit
187 *:*|/*)
188 # absolute url
189 realrepo=$repo
192 die "$(eval_gettext "repo URL: '\$repo' must be absolute or begin with ./|../")"
194 esac
196 # normalize path:
197 # multiple //; leading ./; /./; /../; trailing /
198 sm_path=$(printf '%s/\n' "$sm_path" |
199 sed -e '
200 s|//*|/|g
201 s|^\(\./\)*||
202 s|/\(\./\)*|/|g
203 :start
204 s|\([^/]*\)/\.\./||
205 tstart
206 s|/*$||
208 if test -z "$force"
209 then
210 git ls-files --error-unmatch "$sm_path" > /dev/null 2>&1 &&
211 die "$(eval_gettext "'\$sm_path' already exists in the index")"
212 else
213 git ls-files -s "$sm_path" | sane_grep -v "^160000" > /dev/null 2>&1 &&
214 die "$(eval_gettext "'\$sm_path' already exists in the index and is not a submodule")"
217 if test -z "$force" &&
218 ! git add --dry-run --ignore-missing --no-warn-embedded-repo "$sm_path" > /dev/null 2>&1
219 then
220 eval_gettextln "The following path is ignored by one of your .gitignore files:
221 \$sm_path
222 Use -f if you really want to add it." >&2
223 exit 1
226 if test -n "$custom_name"
227 then
228 sm_name="$custom_name"
229 else
230 sm_name="$sm_path"
233 if ! git submodule--helper check-name "$sm_name"
234 then
235 die "$(eval_gettext "'$sm_name' is not a valid submodule name")"
238 # perhaps the path exists and is already a git repo, else clone it
239 if test -e "$sm_path"
240 then
241 if test -d "$sm_path"/.git || test -f "$sm_path"/.git
242 then
243 eval_gettextln "Adding existing repo at '\$sm_path' to the index"
244 else
245 die "$(eval_gettext "'\$sm_path' already exists and is not a valid git repo")"
248 else
249 if test -d ".git/modules/$sm_name"
250 then
251 if test -z "$force"
252 then
253 eval_gettextln >&2 "A git directory for '\$sm_name' is found locally with remote(s):"
254 GIT_DIR=".git/modules/$sm_name" GIT_WORK_TREE=. git remote -v | grep '(fetch)' | sed -e s,^," ", -e s,' (fetch)',, >&2
255 die "$(eval_gettextln "\
256 If you want to reuse this local git directory instead of cloning again from
257 \$realrepo
258 use the '--force' option. If the local git directory is not the correct repo
259 or you are unsure what this means choose another name with the '--name' option.")"
260 else
261 eval_gettextln "Reactivating local git directory for submodule '\$sm_name'."
264 git submodule--helper clone ${GIT_QUIET:+--quiet} --prefix "$wt_prefix" --path "$sm_path" --name "$sm_name" --url "$realrepo" ${reference:+"$reference"} ${depth:+"$depth"} || exit
266 sanitize_submodule_env
267 cd "$sm_path" &&
268 # ash fails to wordsplit ${branch:+-b "$branch"...}
269 case "$branch" in
270 '') git checkout -f -q ;;
271 ?*) git checkout -f -q -B "$branch" "origin/$branch" ;;
272 esac
273 ) || die "$(eval_gettext "Unable to checkout submodule '\$sm_path'")"
275 git config submodule."$sm_name".url "$realrepo"
277 git add --no-warn-embedded-repo $force "$sm_path" ||
278 die "$(eval_gettext "Failed to add submodule '\$sm_path'")"
280 git config -f .gitmodules submodule."$sm_name".path "$sm_path" &&
281 git config -f .gitmodules submodule."$sm_name".url "$repo" &&
282 if test -n "$branch"
283 then
284 git config -f .gitmodules submodule."$sm_name".branch "$branch"
285 fi &&
286 git add --force .gitmodules ||
287 die "$(eval_gettext "Failed to register submodule '\$sm_path'")"
289 # NEEDSWORK: In a multi-working-tree world, this needs to be
290 # set in the per-worktree config.
291 if git config --get submodule.active >/dev/null
292 then
293 # If the submodule being adding isn't already covered by the
294 # current configured pathspec, set the submodule's active flag
295 if ! git submodule--helper is-active "$sm_path"
296 then
297 git config submodule."$sm_name".active "true"
299 else
300 git config submodule."$sm_name".active "true"
305 # Execute an arbitrary command sequence in each checked out
306 # submodule
308 # $@ = command to execute
310 cmd_foreach()
312 # parse $args after "submodule ... foreach".
313 while test $# -ne 0
315 case "$1" in
316 -q|--quiet)
317 GIT_QUIET=1
319 --recursive)
320 recursive=1
323 usage
326 break
328 esac
329 shift
330 done
332 toplevel=$(pwd)
334 # dup stdin so that it can be restored when running the external
335 # command in the subshell (and a recursive call to this function)
336 exec 3<&0
339 git submodule--helper list --prefix "$wt_prefix" ||
340 echo "#unmatched" $?
342 while read -r mode sha1 stage sm_path
344 die_if_unmatched "$mode" "$sha1"
345 if test -e "$sm_path"/.git
346 then
347 displaypath=$(git submodule--helper relative-path "$prefix$sm_path" "$wt_prefix")
348 say "$(eval_gettext "Entering '\$displaypath'")"
349 name=$(git submodule--helper name "$sm_path")
351 prefix="$prefix$sm_path/"
352 sanitize_submodule_env
353 cd "$sm_path" &&
354 sm_path=$(git submodule--helper relative-path "$sm_path" "$wt_prefix") &&
355 # we make $path available to scripts ...
356 path=$sm_path &&
357 if test $# -eq 1
358 then
359 eval "$1"
360 else
361 "$@"
362 fi &&
363 if test -n "$recursive"
364 then
365 cmd_foreach "--recursive" "$@"
367 ) <&3 3<&- ||
368 die "$(eval_gettext "Stopping at '\$displaypath'; script returned non-zero status.")"
370 done
374 # Register submodules in .git/config
376 # $@ = requested paths (default to all)
378 cmd_init()
380 # parse $args after "submodule ... init".
381 while test $# -ne 0
383 case "$1" in
384 -q|--quiet)
385 GIT_QUIET=1
388 shift
389 break
392 usage
395 break
397 esac
398 shift
399 done
401 git ${wt_prefix:+-C "$wt_prefix"} ${prefix:+--super-prefix "$prefix"} submodule--helper init ${GIT_QUIET:+--quiet} "$@"
405 # Unregister submodules from .git/config and remove their work tree
407 cmd_deinit()
409 # parse $args after "submodule ... deinit".
410 deinit_all=
411 while test $# -ne 0
413 case "$1" in
414 -f|--force)
415 force=$1
417 -q|--quiet)
418 GIT_QUIET=1
420 --all)
421 deinit_all=t
424 shift
425 break
428 usage
431 break
433 esac
434 shift
435 done
437 git ${wt_prefix:+-C "$wt_prefix"} submodule--helper deinit ${GIT_QUIET:+--quiet} ${prefix:+--prefix "$prefix"} ${force:+--force} ${deinit_all:+--all} "$@"
440 is_tip_reachable () (
441 sanitize_submodule_env &&
442 cd "$1" &&
443 rev=$(git rev-list -n 1 "$2" --not --all 2>/dev/null) &&
444 test -z "$rev"
447 fetch_in_submodule () (
448 sanitize_submodule_env &&
449 cd "$1" &&
450 case "$2" in
452 git fetch ;;
454 shift
455 git fetch $(get_default_remote) "$@" ;;
456 esac
460 # Update each submodule path to correct revision, using clone and checkout as needed
462 # $@ = requested paths (default to all)
464 cmd_update()
466 # parse $args after "submodule ... update".
467 while test $# -ne 0
469 case "$1" in
470 -q|--quiet)
471 GIT_QUIET=1
473 --progress)
474 progress="--progress"
476 -i|--init)
477 init=1
479 --require-init)
480 init=1
481 require_init=1
483 --remote)
484 remote=1
486 -N|--no-fetch)
487 nofetch=1
489 -f|--force)
490 force=$1
492 -r|--rebase)
493 update="rebase"
495 --reference)
496 case "$2" in '') usage ;; esac
497 reference="--reference=$2"
498 shift
500 --reference=*)
501 reference="$1"
503 -m|--merge)
504 update="merge"
506 --recursive)
507 recursive=1
509 --checkout)
510 update="checkout"
512 --recommend-shallow)
513 recommend_shallow="--recommend-shallow"
515 --no-recommend-shallow)
516 recommend_shallow="--no-recommend-shallow"
518 --depth)
519 case "$2" in '') usage ;; esac
520 depth="--depth=$2"
521 shift
523 --depth=*)
524 depth=$1
526 -j|--jobs)
527 case "$2" in '') usage ;; esac
528 jobs="--jobs=$2"
529 shift
531 --jobs=*)
532 jobs=$1
535 shift
536 break
539 usage
542 break
544 esac
545 shift
546 done
548 if test -n "$init"
549 then
550 cmd_init "--" "$@" || return
554 git submodule--helper update-clone ${GIT_QUIET:+--quiet} \
555 ${progress:+"$progress"} \
556 ${wt_prefix:+--prefix "$wt_prefix"} \
557 ${prefix:+--recursive-prefix "$prefix"} \
558 ${update:+--update "$update"} \
559 ${reference:+"$reference"} \
560 ${depth:+--depth "$depth"} \
561 ${require_init:+--require-init} \
562 ${recommend_shallow:+"$recommend_shallow"} \
563 ${jobs:+$jobs} \
564 "$@" || echo "#unmatched" $?
565 } | {
566 err=
567 while read -r mode sha1 stage just_cloned sm_path
569 die_if_unmatched "$mode" "$sha1"
571 name=$(git submodule--helper name "$sm_path") || exit
572 if ! test -z "$update"
573 then
574 update_module=$update
575 else
576 update_module=$(git config submodule."$name".update)
577 if test -z "$update_module"
578 then
579 update_module="checkout"
583 displaypath=$(git submodule--helper relative-path "$prefix$sm_path" "$wt_prefix")
585 if test $just_cloned -eq 1
586 then
587 subsha1=
588 case "$update_module" in
589 merge | rebase | none)
590 update_module=checkout ;;
591 esac
592 else
593 subsha1=$(sanitize_submodule_env; cd "$sm_path" &&
594 git rev-parse --verify HEAD) ||
595 die "$(eval_gettext "Unable to find current revision in submodule path '\$displaypath'")"
598 if test -n "$remote"
599 then
600 branch=$(git submodule--helper remote-branch "$sm_path")
601 if test -z "$nofetch"
602 then
603 # Fetch remote before determining tracking $sha1
604 fetch_in_submodule "$sm_path" $depth ||
605 die "$(eval_gettext "Unable to fetch in submodule path '\$sm_path'")"
607 remote_name=$(sanitize_submodule_env; cd "$sm_path" && get_default_remote)
608 sha1=$(sanitize_submodule_env; cd "$sm_path" &&
609 git rev-parse --verify "${remote_name}/${branch}") ||
610 die "$(eval_gettext "Unable to find current \${remote_name}/\${branch} revision in submodule path '\$sm_path'")"
613 if test "$subsha1" != "$sha1" || test -n "$force"
614 then
615 subforce=$force
616 # If we don't already have a -f flag and the submodule has never been checked out
617 if test -z "$subsha1" && test -z "$force"
618 then
619 subforce="-f"
622 if test -z "$nofetch"
623 then
624 # Run fetch only if $sha1 isn't present or it
625 # is not reachable from a ref.
626 is_tip_reachable "$sm_path" "$sha1" ||
627 fetch_in_submodule "$sm_path" $depth ||
628 die "$(eval_gettext "Unable to fetch in submodule path '\$displaypath'")"
630 # Now we tried the usual fetch, but $sha1 may
631 # not be reachable from any of the refs
632 is_tip_reachable "$sm_path" "$sha1" ||
633 fetch_in_submodule "$sm_path" $depth "$sha1" ||
634 die "$(eval_gettext "Fetched in submodule path '\$displaypath', but it did not contain \$sha1. Direct fetching of that commit failed.")"
637 must_die_on_failure=
638 case "$update_module" in
639 checkout)
640 command="git checkout $subforce -q"
641 die_msg="$(eval_gettext "Unable to checkout '\$sha1' in submodule path '\$displaypath'")"
642 say_msg="$(eval_gettext "Submodule path '\$displaypath': checked out '\$sha1'")"
644 rebase)
645 command="git rebase"
646 die_msg="$(eval_gettext "Unable to rebase '\$sha1' in submodule path '\$displaypath'")"
647 say_msg="$(eval_gettext "Submodule path '\$displaypath': rebased into '\$sha1'")"
648 must_die_on_failure=yes
650 merge)
651 command="git merge"
652 die_msg="$(eval_gettext "Unable to merge '\$sha1' in submodule path '\$displaypath'")"
653 say_msg="$(eval_gettext "Submodule path '\$displaypath': merged in '\$sha1'")"
654 must_die_on_failure=yes
657 command="${update_module#!}"
658 die_msg="$(eval_gettext "Execution of '\$command \$sha1' failed in submodule path '\$displaypath'")"
659 say_msg="$(eval_gettext "Submodule path '\$displaypath': '\$command \$sha1'")"
660 must_die_on_failure=yes
663 die "$(eval_gettext "Invalid update mode '$update_module' for submodule '$name'")"
664 esac
666 if (sanitize_submodule_env; cd "$sm_path" && $command "$sha1")
667 then
668 say "$say_msg"
669 elif test -n "$must_die_on_failure"
670 then
671 die_with_status 2 "$die_msg"
672 else
673 err="${err};$die_msg"
674 continue
678 if test -n "$recursive"
679 then
681 prefix=$(git submodule--helper relative-path "$prefix$sm_path/" "$wt_prefix")
682 wt_prefix=
683 sanitize_submodule_env
684 cd "$sm_path" &&
685 eval cmd_update
687 res=$?
688 if test $res -gt 0
689 then
690 die_msg="$(eval_gettext "Failed to recurse into submodule path '\$displaypath'")"
691 if test $res -ne 2
692 then
693 err="${err};$die_msg"
694 continue
695 else
696 die_with_status $res "$die_msg"
700 done
702 if test -n "$err"
703 then
704 OIFS=$IFS
705 IFS=';'
706 for e in $err
708 if test -n "$e"
709 then
710 echo >&2 "$e"
712 done
713 IFS=$OIFS
714 exit 1
720 # Show commit summary for submodules in index or working tree
722 # If '--cached' is given, show summary between index and given commit,
723 # or between working tree and given commit
725 # $@ = [commit (default 'HEAD'),] requested paths (default all)
727 cmd_summary() {
728 summary_limit=-1
729 for_status=
730 diff_cmd=diff-index
732 # parse $args after "submodule ... summary".
733 while test $# -ne 0
735 case "$1" in
736 --cached)
737 cached="$1"
739 --files)
740 files="$1"
742 --for-status)
743 for_status="$1"
745 -n|--summary-limit)
746 summary_limit="$2"
747 isnumber "$summary_limit" || usage
748 shift
750 --summary-limit=*)
751 summary_limit="${1#--summary-limit=}"
752 isnumber "$summary_limit" || usage
755 shift
756 break
759 usage
762 break
764 esac
765 shift
766 done
768 test $summary_limit = 0 && return
770 if rev=$(git rev-parse -q --verify --default HEAD ${1+"$1"})
771 then
772 head=$rev
773 test $# = 0 || shift
774 elif test -z "$1" || test "$1" = "HEAD"
775 then
776 # before the first commit: compare with an empty tree
777 head=$(git hash-object -w -t tree --stdin </dev/null)
778 test -z "$1" || shift
779 else
780 head="HEAD"
783 if [ -n "$files" ]
784 then
785 test -n "$cached" &&
786 die "$(gettext "The --cached option cannot be used with the --files option")"
787 diff_cmd=diff-files
788 head=
791 cd_to_toplevel
792 eval "set $(git rev-parse --sq --prefix "$wt_prefix" -- "$@")"
793 # Get modified modules cared by user
794 modules=$(git $diff_cmd $cached --ignore-submodules=dirty --raw $head -- "$@" |
795 sane_egrep '^:([0-7]* )?160000' |
796 while read -r mod_src mod_dst sha1_src sha1_dst status sm_path
798 # Always show modules deleted or type-changed (blob<->module)
799 if test "$status" = D || test "$status" = T
800 then
801 printf '%s\n' "$sm_path"
802 continue
804 # Respect the ignore setting for --for-status.
805 if test -n "$for_status"
806 then
807 name=$(git submodule--helper name "$sm_path")
808 ignore_config=$(get_submodule_config "$name" ignore none)
809 test $status != A && test $ignore_config = all && continue
811 # Also show added or modified modules which are checked out
812 GIT_DIR="$sm_path/.git" git rev-parse --git-dir >/dev/null 2>&1 &&
813 printf '%s\n' "$sm_path"
814 done
817 test -z "$modules" && return
819 git $diff_cmd $cached --ignore-submodules=dirty --raw $head -- $modules |
820 sane_egrep '^:([0-7]* )?160000' |
821 cut -c2- |
822 while read -r mod_src mod_dst sha1_src sha1_dst status name
824 if test -z "$cached" &&
825 test $sha1_dst = 0000000000000000000000000000000000000000
826 then
827 case "$mod_dst" in
828 160000)
829 sha1_dst=$(GIT_DIR="$name/.git" git rev-parse HEAD)
831 100644 | 100755 | 120000)
832 sha1_dst=$(git hash-object $name)
834 000000)
835 ;; # removed
837 # unexpected type
838 eval_gettextln "unexpected mode \$mod_dst" >&2
839 continue ;;
840 esac
842 missing_src=
843 missing_dst=
845 test $mod_src = 160000 &&
846 ! GIT_DIR="$name/.git" git rev-parse -q --verify $sha1_src^0 >/dev/null &&
847 missing_src=t
849 test $mod_dst = 160000 &&
850 ! GIT_DIR="$name/.git" git rev-parse -q --verify $sha1_dst^0 >/dev/null &&
851 missing_dst=t
853 display_name=$(git submodule--helper relative-path "$name" "$wt_prefix")
855 total_commits=
856 case "$missing_src,$missing_dst" in
858 errmsg="$(eval_gettext " Warn: \$display_name doesn't contain commit \$sha1_src")"
861 errmsg="$(eval_gettext " Warn: \$display_name doesn't contain commit \$sha1_dst")"
863 t,t)
864 errmsg="$(eval_gettext " Warn: \$display_name doesn't contain commits \$sha1_src and \$sha1_dst")"
867 errmsg=
868 total_commits=$(
869 if test $mod_src = 160000 && test $mod_dst = 160000
870 then
871 range="$sha1_src...$sha1_dst"
872 elif test $mod_src = 160000
873 then
874 range=$sha1_src
875 else
876 range=$sha1_dst
878 GIT_DIR="$name/.git" \
879 git rev-list --first-parent $range -- | wc -l
881 total_commits=" ($(($total_commits + 0)))"
883 esac
885 sha1_abbr_src=$(echo $sha1_src | cut -c1-7)
886 sha1_abbr_dst=$(echo $sha1_dst | cut -c1-7)
887 if test $status = T
888 then
889 blob="$(gettext "blob")"
890 submodule="$(gettext "submodule")"
891 if test $mod_dst = 160000
892 then
893 echo "* $display_name $sha1_abbr_src($blob)->$sha1_abbr_dst($submodule)$total_commits:"
894 else
895 echo "* $display_name $sha1_abbr_src($submodule)->$sha1_abbr_dst($blob)$total_commits:"
897 else
898 echo "* $display_name $sha1_abbr_src...$sha1_abbr_dst$total_commits:"
900 if test -n "$errmsg"
901 then
902 # Don't give error msg for modification whose dst is not submodule
903 # i.e. deleted or changed to blob
904 test $mod_dst = 160000 && echo "$errmsg"
905 else
906 if test $mod_src = 160000 && test $mod_dst = 160000
907 then
908 limit=
909 test $summary_limit -gt 0 && limit="-$summary_limit"
910 GIT_DIR="$name/.git" \
911 git log $limit --pretty='format: %m %s' \
912 --first-parent $sha1_src...$sha1_dst
913 elif test $mod_dst = 160000
914 then
915 GIT_DIR="$name/.git" \
916 git log --pretty='format: > %s' -1 $sha1_dst
917 else
918 GIT_DIR="$name/.git" \
919 git log --pretty='format: < %s' -1 $sha1_src
921 echo
923 echo
924 done
927 # List all submodules, prefixed with:
928 # - submodule not initialized
929 # + different revision checked out
931 # If --cached was specified the revision in the index will be printed
932 # instead of the currently checked out revision.
934 # $@ = requested paths (default to all)
936 cmd_status()
938 # parse $args after "submodule ... status".
939 while test $# -ne 0
941 case "$1" in
942 -q|--quiet)
943 GIT_QUIET=1
945 --cached)
946 cached=1
948 --recursive)
949 recursive=1
952 shift
953 break
956 usage
959 break
961 esac
962 shift
963 done
965 git ${wt_prefix:+-C "$wt_prefix"} ${prefix:+--super-prefix "$prefix"} submodule--helper status ${GIT_QUIET:+--quiet} ${cached:+--cached} ${recursive:+--recursive} "$@"
968 # Sync remote urls for submodules
969 # This makes the value for remote.$remote.url match the value
970 # specified in .gitmodules.
972 cmd_sync()
974 while test $# -ne 0
976 case "$1" in
977 -q|--quiet)
978 GIT_QUIET=1
979 shift
981 --recursive)
982 recursive=1
983 shift
986 shift
987 break
990 usage
993 break
995 esac
996 done
998 git ${wt_prefix:+-C "$wt_prefix"} ${prefix:+--super-prefix "$prefix"} submodule--helper sync ${GIT_QUIET:+--quiet} ${recursive:+--recursive} "$@"
1001 cmd_absorbgitdirs()
1003 git submodule--helper absorb-git-dirs --prefix "$wt_prefix" "$@"
1006 # This loop parses the command line arguments to find the
1007 # subcommand name to dispatch. Parsing of the subcommand specific
1008 # options are primarily done by the subcommand implementations.
1009 # Subcommand specific options such as --branch and --cached are
1010 # parsed here as well, for backward compatibility.
1012 while test $# != 0 && test -z "$command"
1014 case "$1" in
1015 add | foreach | init | deinit | update | status | summary | sync | absorbgitdirs)
1016 command=$1
1018 -q|--quiet)
1019 GIT_QUIET=1
1021 -b|--branch)
1022 case "$2" in
1024 usage
1026 esac
1027 branch="$2"; shift
1029 --cached)
1030 cached="$1"
1033 break
1036 usage
1039 break
1041 esac
1042 shift
1043 done
1045 # No command word defaults to "status"
1046 if test -z "$command"
1047 then
1048 if test $# = 0
1049 then
1050 command=status
1051 else
1052 usage
1056 # "-b branch" is accepted only by "add"
1057 if test -n "$branch" && test "$command" != add
1058 then
1059 usage
1062 # "--cached" is accepted only by "status" and "summary"
1063 if test -n "$cached" && test "$command" != status && test "$command" != summary
1064 then
1065 usage
1068 "cmd_$command" "$@"