Skip tests that fail due to incomplete implementations, missing tools...
[git/mingw/j6t.git] / git-submodule.sh
blob10c5af970631497d6d7b00ac601a147ec8f013cd
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] [--] <path>...
12 or: $dashless [--quiet] update [--init] [--remote] [-N|--no-fetch] [-f|--force] [--checkout|--merge|--rebase] [--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 OPTIONS_SPEC=
17 SUBDIRECTORY_OK=Yes
18 . git-sh-setup
19 . git-sh-i18n
20 . git-parse-remote
21 require_work_tree
22 wt_prefix=$(git rev-parse --show-prefix)
23 cd_to_toplevel
25 # Restrict ourselves to a vanilla subset of protocols; the URLs
26 # we get are under control of a remote repository, and we do not
27 # want them kicking off arbitrary git-remote-* programs.
29 # If the user has already specified a set of allowed protocols,
30 # we assume they know what they're doing and use that instead.
31 : ${GIT_ALLOW_PROTOCOL=file:git:http:https:ssh}
32 export GIT_ALLOW_PROTOCOL
34 command=
35 branch=
36 force=
37 reference=
38 cached=
39 recursive=
40 init=
41 files=
42 remote=
43 nofetch=
44 update=
45 prefix=
46 custom_name=
47 depth=
49 # The function takes at most 2 arguments. The first argument is the
50 # URL that navigates to the submodule origin repo. When relative, this URL
51 # is relative to the superproject origin URL repo. The second up_path
52 # argument, if specified, is the relative path that navigates
53 # from the submodule working tree to the superproject working tree.
55 # The output of the function is the origin URL of the submodule.
57 # The output will either be an absolute URL or filesystem path (if the
58 # superproject origin URL is an absolute URL or filesystem path,
59 # respectively) or a relative file system path (if the superproject
60 # origin URL is a relative file system path).
62 # When the output is a relative file system path, the path is either
63 # relative to the submodule working tree, if up_path is specified, or to
64 # the superproject working tree otherwise.
65 resolve_relative_url ()
67 remote=$(get_default_remote)
68 remoteurl=$(git config "remote.$remote.url") ||
69 remoteurl=$(pwd) # the repository is its own authoritative upstream
70 url="$1"
71 remoteurl=${remoteurl%/}
72 sep=/
73 up_path="$2"
75 case "$remoteurl" in
76 *:*|/*)
77 is_relative=
79 ./*|../*)
80 is_relative=t
83 is_relative=t
84 remoteurl="./$remoteurl"
86 esac
88 while test -n "$url"
90 case "$url" in
91 ../*)
92 url="${url#../}"
93 case "$remoteurl" in
94 */*)
95 remoteurl="${remoteurl%/*}"
97 *:*)
98 remoteurl="${remoteurl%:*}"
99 sep=:
102 if test -z "$is_relative" || test "." = "$remoteurl"
103 then
104 die "$(eval_gettext "cannot strip one component off url '\$remoteurl'")"
105 else
106 remoteurl=.
109 esac
111 ./*)
112 url="${url#./}"
115 break;;
116 esac
117 done
118 remoteurl="$remoteurl$sep${url%/}"
119 echo "${is_relative:+${up_path}}${remoteurl#./}"
122 # Resolve a path to be relative to another path. This is intended for
123 # converting submodule paths when git-submodule is run in a subdirectory
124 # and only handles paths where the directory separator is '/'.
126 # The output is the first argument as a path relative to the second argument,
127 # which defaults to $wt_prefix if it is omitted.
128 relative_path ()
130 local target curdir result
131 target=$1
132 curdir=${2-$wt_prefix}
133 curdir=${curdir%/}
134 result=
136 while test -n "$curdir"
138 case "$target" in
139 "$curdir/"*)
140 target=${target#"$curdir"/}
141 break
143 esac
145 result="${result}../"
146 if test "$curdir" = "${curdir%/*}"
147 then
148 curdir=
149 else
150 curdir="${curdir%/*}"
152 done
154 echo "$result$target"
157 die_if_unmatched ()
159 if test "$1" = "#unmatched"
160 then
161 exit 1
166 # Print a submodule configuration setting
168 # $1 = submodule name
169 # $2 = option name
170 # $3 = default value
172 # Checks in the usual git-config places first (for overrides),
173 # otherwise it falls back on .gitmodules. This allows you to
174 # distribute project-wide defaults in .gitmodules, while still
175 # customizing individual repositories if necessary. If the option is
176 # not in .gitmodules either, print a default value.
178 get_submodule_config () {
179 name="$1"
180 option="$2"
181 default="$3"
182 value=$(git config submodule."$name"."$option")
183 if test -z "$value"
184 then
185 value=$(git config -f .gitmodules submodule."$name"."$option")
187 printf '%s' "${value:-$default}"
190 isnumber()
192 n=$(($1 + 0)) 2>/dev/null && test "$n" = "$1"
196 # Add a new submodule to the working tree, .gitmodules and the index
198 # $@ = repo path
200 # optional branch is stored in global branch variable
202 cmd_add()
204 # parse $args after "submodule ... add".
205 reference_path=
206 while test $# -ne 0
208 case "$1" in
209 -b | --branch)
210 case "$2" in '') usage ;; esac
211 branch=$2
212 shift
214 -f | --force)
215 force=$1
217 -q|--quiet)
218 GIT_QUIET=1
220 --reference)
221 case "$2" in '') usage ;; esac
222 reference_path=$2
223 shift
225 --reference=*)
226 reference_path="${1#--reference=}"
228 --name)
229 case "$2" in '') usage ;; esac
230 custom_name=$2
231 shift
233 --depth)
234 case "$2" in '') usage ;; esac
235 depth="--depth=$2"
236 shift
238 --depth=*)
239 depth=$1
242 shift
243 break
246 usage
249 break
251 esac
252 shift
253 done
255 if test -n "$reference_path"
256 then
257 is_absolute_path "$reference_path" ||
258 reference_path="$wt_prefix$reference_path"
260 reference="--reference=$reference_path"
263 repo=$1
264 sm_path=$2
266 if test -z "$sm_path"; then
267 sm_path=$(printf '%s\n' "$repo" |
268 sed -e 's|/$||' -e 's|:*/*\.git$||' -e 's|.*[/:]||g')
271 if test -z "$repo" || test -z "$sm_path"; then
272 usage
275 is_absolute_path "$sm_path" || sm_path="$wt_prefix$sm_path"
277 # assure repo is absolute or relative to parent
278 case "$repo" in
279 ./*|../*)
280 test -z "$wt_prefix" ||
281 die "$(gettext "Relative path can only be used from the toplevel of the working tree")"
283 # dereference source url relative to parent's url
284 realrepo=$(resolve_relative_url "$repo") || exit
286 *:*|/*)
287 # absolute url
288 realrepo=$repo
291 die "$(eval_gettext "repo URL: '\$repo' must be absolute or begin with ./|../")"
293 esac
295 # normalize path:
296 # multiple //; leading ./; /./; /../; trailing /
297 sm_path=$(printf '%s/\n' "$sm_path" |
298 sed -e '
299 s|//*|/|g
300 s|^\(\./\)*||
301 s|/\(\./\)*|/|g
302 :start
303 s|\([^/]*\)/\.\./||
304 tstart
305 s|/*$||
307 git ls-files --error-unmatch "$sm_path" > /dev/null 2>&1 &&
308 die "$(eval_gettext "'\$sm_path' already exists in the index")"
310 if test -z "$force" && ! git add --dry-run --ignore-missing "$sm_path" > /dev/null 2>&1
311 then
312 eval_gettextln "The following path is ignored by one of your .gitignore files:
313 \$sm_path
314 Use -f if you really want to add it." >&2
315 exit 1
318 if test -n "$custom_name"
319 then
320 sm_name="$custom_name"
321 else
322 sm_name="$sm_path"
325 # perhaps the path exists and is already a git repo, else clone it
326 if test -e "$sm_path"
327 then
328 if test -d "$sm_path"/.git || test -f "$sm_path"/.git
329 then
330 eval_gettextln "Adding existing repo at '\$sm_path' to the index"
331 else
332 die "$(eval_gettext "'\$sm_path' already exists and is not a valid git repo")"
335 else
336 if test -d ".git/modules/$sm_name"
337 then
338 if test -z "$force"
339 then
340 echo >&2 "$(eval_gettext "A git directory for '\$sm_name' is found locally with remote(s):")"
341 GIT_DIR=".git/modules/$sm_name" GIT_WORK_TREE=. git remote -v | grep '(fetch)' | sed -e s,^," ", -e s,' (fetch)',, >&2
342 echo >&2 "$(eval_gettext "If you want to reuse this local git directory instead of cloning again from")"
343 echo >&2 " $realrepo"
344 echo >&2 "$(eval_gettext "use the '--force' option. If the local git directory is not the correct repo")"
345 die "$(eval_gettext "or you are unsure what this means choose another name with the '--name' option.")"
346 else
347 echo "$(eval_gettext "Reactivating local git directory for submodule '\$sm_name'.")"
350 git submodule--helper clone ${GIT_QUIET:+--quiet} --prefix "$wt_prefix" --path "$sm_path" --name "$sm_name" --url "$realrepo" "$reference" "$depth" || exit
352 clear_local_git_env
353 cd "$sm_path" &&
354 # ash fails to wordsplit ${branch:+-b "$branch"...}
355 case "$branch" in
356 '') git checkout -f -q ;;
357 ?*) git checkout -f -q -B "$branch" "origin/$branch" ;;
358 esac
359 ) || die "$(eval_gettext "Unable to checkout submodule '\$sm_path'")"
361 git config submodule."$sm_name".url "$realrepo"
363 git add $force "$sm_path" ||
364 die "$(eval_gettext "Failed to add submodule '\$sm_path'")"
366 git config -f .gitmodules submodule."$sm_name".path "$sm_path" &&
367 git config -f .gitmodules submodule."$sm_name".url "$repo" &&
368 if test -n "$branch"
369 then
370 git config -f .gitmodules submodule."$sm_name".branch "$branch"
371 fi &&
372 git add --force .gitmodules ||
373 die "$(eval_gettext "Failed to register submodule '\$sm_path'")"
377 # Execute an arbitrary command sequence in each checked out
378 # submodule
380 # $@ = command to execute
382 cmd_foreach()
384 # parse $args after "submodule ... foreach".
385 while test $# -ne 0
387 case "$1" in
388 -q|--quiet)
389 GIT_QUIET=1
391 --recursive)
392 recursive=1
395 usage
398 break
400 esac
401 shift
402 done
404 toplevel=$(pwd)
406 # dup stdin so that it can be restored when running the external
407 # command in the subshell (and a recursive call to this function)
408 exec 3<&0
410 git submodule--helper list --prefix "$wt_prefix"|
411 while read mode sha1 stage sm_path
413 die_if_unmatched "$mode"
414 if test -e "$sm_path"/.git
415 then
416 displaypath=$(relative_path "$sm_path")
417 say "$(eval_gettext "Entering '\$prefix\$displaypath'")"
418 name=$(git submodule--helper name "$sm_path")
420 prefix="$prefix$sm_path/"
421 clear_local_git_env
422 cd "$sm_path" &&
423 sm_path=$(relative_path "$sm_path") &&
424 # we make $path available to scripts ...
425 path=$sm_path &&
426 if test $# -eq 1
427 then
428 eval "$1"
429 else
430 "$@"
431 fi &&
432 if test -n "$recursive"
433 then
434 cmd_foreach "--recursive" "$@"
436 ) <&3 3<&- ||
437 die "$(eval_gettext "Stopping at '\$prefix\$displaypath'; script returned non-zero status.")"
439 done
443 # Register submodules in .git/config
445 # $@ = requested paths (default to all)
447 cmd_init()
449 # parse $args after "submodule ... init".
450 while test $# -ne 0
452 case "$1" in
453 -q|--quiet)
454 GIT_QUIET=1
457 shift
458 break
461 usage
464 break
466 esac
467 shift
468 done
470 git submodule--helper list --prefix "$wt_prefix" "$@" |
471 while read mode sha1 stage sm_path
473 die_if_unmatched "$mode"
474 name=$(git submodule--helper name "$sm_path") || exit
476 displaypath=$(relative_path "$sm_path")
478 # Copy url setting when it is not set yet
479 if test -z "$(git config "submodule.$name.url")"
480 then
481 url=$(git config -f .gitmodules submodule."$name".url)
482 test -z "$url" &&
483 die "$(eval_gettext "No url found for submodule path '\$displaypath' in .gitmodules")"
485 # Possibly a url relative to parent
486 case "$url" in
487 ./*|../*)
488 url=$(resolve_relative_url "$url") || exit
490 esac
491 git config submodule."$name".url "$url" ||
492 die "$(eval_gettext "Failed to register url for submodule path '\$displaypath'")"
494 say "$(eval_gettext "Submodule '\$name' (\$url) registered for path '\$displaypath'")"
497 # Copy "update" setting when it is not set yet
498 if upd="$(git config -f .gitmodules submodule."$name".update)" &&
499 test -n "$upd" &&
500 test -z "$(git config submodule."$name".update)"
501 then
502 case "$upd" in
503 checkout | rebase | merge | none)
504 ;; # known modes of updating
506 echo >&2 "warning: unknown update mode '$upd' suggested for submodule '$name'"
507 upd=none
509 esac
510 git config submodule."$name".update "$upd" ||
511 die "$(eval_gettext "Failed to register update mode for submodule path '\$displaypath'")"
513 done
517 # Unregister submodules from .git/config and remove their work tree
519 # $@ = requested paths (use '.' to deinit all submodules)
521 cmd_deinit()
523 # parse $args after "submodule ... deinit".
524 while test $# -ne 0
526 case "$1" in
527 -f|--force)
528 force=$1
530 -q|--quiet)
531 GIT_QUIET=1
534 shift
535 break
538 usage
541 break
543 esac
544 shift
545 done
547 if test $# = 0
548 then
549 die "$(eval_gettext "Use '.' if you really want to deinitialize all submodules")"
552 git submodule--helper list --prefix "$wt_prefix" "$@" |
553 while read mode sha1 stage sm_path
555 die_if_unmatched "$mode"
556 name=$(git submodule--helper name "$sm_path") || exit
558 displaypath=$(relative_path "$sm_path")
560 # Remove the submodule work tree (unless the user already did it)
561 if test -d "$sm_path"
562 then
563 # Protect submodules containing a .git directory
564 if test -d "$sm_path/.git"
565 then
566 echo >&2 "$(eval_gettext "Submodule work tree '\$displaypath' contains a .git directory")"
567 die "$(eval_gettext "(use 'rm -rf' if you really want to remove it including all of its history)")"
570 if test -z "$force"
571 then
572 git rm -qn "$sm_path" ||
573 die "$(eval_gettext "Submodule work tree '\$displaypath' contains local modifications; use '-f' to discard them")"
575 rm -rf "$sm_path" &&
576 say "$(eval_gettext "Cleared directory '\$displaypath'")" ||
577 say "$(eval_gettext "Could not remove submodule work tree '\$displaypath'")"
580 mkdir "$sm_path" || say "$(eval_gettext "Could not create empty submodule directory '\$displaypath'")"
582 # Remove the .git/config entries (unless the user already did it)
583 if test -n "$(git config --get-regexp submodule."$name\.")"
584 then
585 # Remove the whole section so we have a clean state when
586 # the user later decides to init this submodule again
587 url=$(git config submodule."$name".url)
588 git config --remove-section submodule."$name" 2>/dev/null &&
589 say "$(eval_gettext "Submodule '\$name' (\$url) unregistered for path '\$displaypath'")"
591 done
595 # Update each submodule path to correct revision, using clone and checkout as needed
597 # $@ = requested paths (default to all)
599 cmd_update()
601 # parse $args after "submodule ... update".
602 while test $# -ne 0
604 case "$1" in
605 -q|--quiet)
606 GIT_QUIET=1
608 -i|--init)
609 init=1
611 --remote)
612 remote=1
614 -N|--no-fetch)
615 nofetch=1
617 -f|--force)
618 force=$1
620 -r|--rebase)
621 update="rebase"
623 --reference)
624 case "$2" in '') usage ;; esac
625 reference="--reference=$2"
626 shift
628 --reference=*)
629 reference="$1"
631 -m|--merge)
632 update="merge"
634 --recursive)
635 recursive=1
637 --checkout)
638 update="checkout"
640 --depth)
641 case "$2" in '') usage ;; esac
642 depth="--depth=$2"
643 shift
645 --depth=*)
646 depth=$1
648 -j|--jobs)
649 case "$2" in '') usage ;; esac
650 jobs="--jobs=$2"
651 shift
653 --jobs=*)
654 jobs=$1
657 shift
658 break
661 usage
664 break
666 esac
667 shift
668 done
670 if test -n "$init"
671 then
672 cmd_init "--" "$@" || return
675 git submodule--helper update-clone ${GIT_QUIET:+--quiet} \
676 ${wt_prefix:+--prefix "$wt_prefix"} \
677 ${prefix:+--recursive_prefix "$prefix"} \
678 ${update:+--update "$update"} \
679 ${reference:+--reference "$reference"} \
680 ${depth:+--depth "$depth"} \
681 ${jobs:+$jobs} \
682 "$@" | {
683 err=
684 while read mode sha1 stage just_cloned sm_path
686 die_if_unmatched "$mode"
688 name=$(git submodule--helper name "$sm_path") || exit
689 url=$(git config submodule."$name".url)
690 branch=$(get_submodule_config "$name" branch master)
691 if ! test -z "$update"
692 then
693 update_module=$update
694 else
695 update_module=$(git config submodule."$name".update)
696 if test -z "$update_module"
697 then
698 update_module="checkout"
702 displaypath=$(relative_path "$prefix$sm_path")
704 if test $just_cloned -eq 1
705 then
706 subsha1=
707 update_module=checkout
708 else
709 subsha1=$(clear_local_git_env; cd "$sm_path" &&
710 git rev-parse --verify HEAD) ||
711 die "$(eval_gettext "Unable to find current revision in submodule path '\$displaypath'")"
714 if test -n "$remote"
715 then
716 if test -z "$nofetch"
717 then
718 # Fetch remote before determining tracking $sha1
719 (clear_local_git_env; cd "$sm_path" && git-fetch) ||
720 die "$(eval_gettext "Unable to fetch in submodule path '\$sm_path'")"
722 remote_name=$(clear_local_git_env; cd "$sm_path" && get_default_remote)
723 sha1=$(clear_local_git_env; cd "$sm_path" &&
724 git rev-parse --verify "${remote_name}/${branch}") ||
725 die "$(eval_gettext "Unable to find current ${remote_name}/${branch} revision in submodule path '\$sm_path'")"
728 if test "$subsha1" != "$sha1" || test -n "$force"
729 then
730 subforce=$force
731 # If we don't already have a -f flag and the submodule has never been checked out
732 if test -z "$subsha1" && test -z "$force"
733 then
734 subforce="-f"
737 if test -z "$nofetch"
738 then
739 # Run fetch only if $sha1 isn't present or it
740 # is not reachable from a ref.
741 (clear_local_git_env; cd "$sm_path" &&
742 ( (rev=$(git rev-list -n 1 $sha1 --not --all 2>/dev/null) &&
743 test -z "$rev") || git-fetch)) ||
744 die "$(eval_gettext "Unable to fetch in submodule path '\$displaypath'")"
747 must_die_on_failure=
748 case "$update_module" in
749 checkout)
750 command="git checkout $subforce -q"
751 die_msg="$(eval_gettext "Unable to checkout '\$sha1' in submodule path '\$displaypath'")"
752 say_msg="$(eval_gettext "Submodule path '\$displaypath': checked out '\$sha1'")"
754 rebase)
755 command="git rebase"
756 die_msg="$(eval_gettext "Unable to rebase '\$sha1' in submodule path '\$displaypath'")"
757 say_msg="$(eval_gettext "Submodule path '\$displaypath': rebased into '\$sha1'")"
758 must_die_on_failure=yes
760 merge)
761 command="git merge"
762 die_msg="$(eval_gettext "Unable to merge '\$sha1' in submodule path '\$displaypath'")"
763 say_msg="$(eval_gettext "Submodule path '\$displaypath': merged in '\$sha1'")"
764 must_die_on_failure=yes
767 command="${update_module#!}"
768 die_msg="$(eval_gettext "Execution of '\$command \$sha1' failed in submodule path '\$prefix\$sm_path'")"
769 say_msg="$(eval_gettext "Submodule path '\$prefix\$sm_path': '\$command \$sha1'")"
770 must_die_on_failure=yes
773 die "$(eval_gettext "Invalid update mode '$update_module' for submodule '$name'")"
774 esac
776 if (clear_local_git_env; cd "$sm_path" && $command "$sha1")
777 then
778 say "$say_msg"
779 elif test -n "$must_die_on_failure"
780 then
781 die_with_status 2 "$die_msg"
782 else
783 err="${err};$die_msg"
784 continue
788 if test -n "$recursive"
789 then
791 prefix="$prefix$sm_path/"
792 clear_local_git_env
793 cd "$sm_path" &&
794 eval cmd_update
796 res=$?
797 if test $res -gt 0
798 then
799 die_msg="$(eval_gettext "Failed to recurse into submodule path '\$displaypath'")"
800 if test $res -eq 1
801 then
802 err="${err};$die_msg"
803 continue
804 else
805 die_with_status $res "$die_msg"
809 done
811 if test -n "$err"
812 then
813 OIFS=$IFS
814 IFS=';'
815 for e in $err
817 if test -n "$e"
818 then
819 echo >&2 "$e"
821 done
822 IFS=$OIFS
823 exit 1
828 set_name_rev () {
829 revname=$( (
830 clear_local_git_env
831 cd "$1" && {
832 git describe "$2" 2>/dev/null ||
833 git describe --tags "$2" 2>/dev/null ||
834 git describe --contains "$2" 2>/dev/null ||
835 git describe --all --always "$2"
838 test -z "$revname" || revname=" ($revname)"
841 # Show commit summary for submodules in index or working tree
843 # If '--cached' is given, show summary between index and given commit,
844 # or between working tree and given commit
846 # $@ = [commit (default 'HEAD'),] requested paths (default all)
848 cmd_summary() {
849 summary_limit=-1
850 for_status=
851 diff_cmd=diff-index
853 # parse $args after "submodule ... summary".
854 while test $# -ne 0
856 case "$1" in
857 --cached)
858 cached="$1"
860 --files)
861 files="$1"
863 --for-status)
864 for_status="$1"
866 -n|--summary-limit)
867 summary_limit="$2"
868 isnumber "$summary_limit" || usage
869 shift
871 --summary-limit=*)
872 summary_limit="${1#--summary-limit=}"
873 isnumber "$summary_limit" || usage
876 shift
877 break
880 usage
883 break
885 esac
886 shift
887 done
889 test $summary_limit = 0 && return
891 if rev=$(git rev-parse -q --verify --default HEAD ${1+"$1"})
892 then
893 head=$rev
894 test $# = 0 || shift
895 elif test -z "$1" || test "$1" = "HEAD"
896 then
897 # before the first commit: compare with an empty tree
898 head=$(git hash-object -w -t tree --stdin </dev/null)
899 test -z "$1" || shift
900 else
901 head="HEAD"
904 if [ -n "$files" ]
905 then
906 test -n "$cached" &&
907 die "$(gettext "The --cached option cannot be used with the --files option")"
908 diff_cmd=diff-files
909 head=
912 cd_to_toplevel
913 eval "set $(git rev-parse --sq --prefix "$wt_prefix" -- "$@")"
914 # Get modified modules cared by user
915 modules=$(git $diff_cmd $cached --ignore-submodules=dirty --raw $head -- "$@" |
916 sane_egrep '^:([0-7]* )?160000' |
917 while read mod_src mod_dst sha1_src sha1_dst status sm_path
919 # Always show modules deleted or type-changed (blob<->module)
920 if test "$status" = D || test "$status" = T
921 then
922 printf '%s\n' "$sm_path"
923 continue
925 # Respect the ignore setting for --for-status.
926 if test -n "$for_status"
927 then
928 name=$(git submodule--helper name "$sm_path")
929 ignore_config=$(get_submodule_config "$name" ignore none)
930 test $status != A && test $ignore_config = all && continue
932 # Also show added or modified modules which are checked out
933 GIT_DIR="$sm_path/.git" git-rev-parse --git-dir >/dev/null 2>&1 &&
934 printf '%s\n' "$sm_path"
935 done
938 test -z "$modules" && return
940 git $diff_cmd $cached --ignore-submodules=dirty --raw $head -- $modules |
941 sane_egrep '^:([0-7]* )?160000' |
942 cut -c2- |
943 while read mod_src mod_dst sha1_src sha1_dst status name
945 if test -z "$cached" &&
946 test $sha1_dst = 0000000000000000000000000000000000000000
947 then
948 case "$mod_dst" in
949 160000)
950 sha1_dst=$(GIT_DIR="$name/.git" git rev-parse HEAD)
952 100644 | 100755 | 120000)
953 sha1_dst=$(git hash-object $name)
955 000000)
956 ;; # removed
958 # unexpected type
959 eval_gettextln "unexpected mode \$mod_dst" >&2
960 continue ;;
961 esac
963 missing_src=
964 missing_dst=
966 test $mod_src = 160000 &&
967 ! GIT_DIR="$name/.git" git-rev-parse -q --verify $sha1_src^0 >/dev/null &&
968 missing_src=t
970 test $mod_dst = 160000 &&
971 ! GIT_DIR="$name/.git" git-rev-parse -q --verify $sha1_dst^0 >/dev/null &&
972 missing_dst=t
974 display_name=$(relative_path "$name")
976 total_commits=
977 case "$missing_src,$missing_dst" in
979 errmsg="$(eval_gettext " Warn: \$display_name doesn't contain commit \$sha1_src")"
982 errmsg="$(eval_gettext " Warn: \$display_name doesn't contain commit \$sha1_dst")"
984 t,t)
985 errmsg="$(eval_gettext " Warn: \$display_name doesn't contain commits \$sha1_src and \$sha1_dst")"
988 errmsg=
989 total_commits=$(
990 if test $mod_src = 160000 && test $mod_dst = 160000
991 then
992 range="$sha1_src...$sha1_dst"
993 elif test $mod_src = 160000
994 then
995 range=$sha1_src
996 else
997 range=$sha1_dst
999 GIT_DIR="$name/.git" \
1000 git rev-list --first-parent $range -- | wc -l
1002 total_commits=" ($(($total_commits + 0)))"
1004 esac
1006 sha1_abbr_src=$(echo $sha1_src | cut -c1-7)
1007 sha1_abbr_dst=$(echo $sha1_dst | cut -c1-7)
1008 if test $status = T
1009 then
1010 blob="$(gettext "blob")"
1011 submodule="$(gettext "submodule")"
1012 if test $mod_dst = 160000
1013 then
1014 echo "* $display_name $sha1_abbr_src($blob)->$sha1_abbr_dst($submodule)$total_commits:"
1015 else
1016 echo "* $display_name $sha1_abbr_src($submodule)->$sha1_abbr_dst($blob)$total_commits:"
1018 else
1019 echo "* $display_name $sha1_abbr_src...$sha1_abbr_dst$total_commits:"
1021 if test -n "$errmsg"
1022 then
1023 # Don't give error msg for modification whose dst is not submodule
1024 # i.e. deleted or changed to blob
1025 test $mod_dst = 160000 && echo "$errmsg"
1026 else
1027 if test $mod_src = 160000 && test $mod_dst = 160000
1028 then
1029 limit=
1030 test $summary_limit -gt 0 && limit="-$summary_limit"
1031 GIT_DIR="$name/.git" \
1032 git log $limit --pretty='format: %m %s' \
1033 --first-parent $sha1_src...$sha1_dst
1034 elif test $mod_dst = 160000
1035 then
1036 GIT_DIR="$name/.git" \
1037 git log --pretty='format: > %s' -1 $sha1_dst
1038 else
1039 GIT_DIR="$name/.git" \
1040 git log --pretty='format: < %s' -1 $sha1_src
1042 echo
1044 echo
1045 done
1048 # List all submodules, prefixed with:
1049 # - submodule not initialized
1050 # + different revision checked out
1052 # If --cached was specified the revision in the index will be printed
1053 # instead of the currently checked out revision.
1055 # $@ = requested paths (default to all)
1057 cmd_status()
1059 # parse $args after "submodule ... status".
1060 while test $# -ne 0
1062 case "$1" in
1063 -q|--quiet)
1064 GIT_QUIET=1
1066 --cached)
1067 cached=1
1069 --recursive)
1070 recursive=1
1073 shift
1074 break
1077 usage
1080 break
1082 esac
1083 shift
1084 done
1086 git submodule--helper list --prefix "$wt_prefix" "$@" |
1087 while read mode sha1 stage sm_path
1089 die_if_unmatched "$mode"
1090 name=$(git submodule--helper name "$sm_path") || exit
1091 url=$(git config submodule."$name".url)
1092 displaypath=$(relative_path "$prefix$sm_path")
1093 if test "$stage" = U
1094 then
1095 say "U$sha1 $displaypath"
1096 continue
1098 if test -z "$url" ||
1100 ! test -d "$sm_path"/.git &&
1101 ! test -f "$sm_path"/.git
1103 then
1104 say "-$sha1 $displaypath"
1105 continue;
1107 if git diff-files --ignore-submodules=dirty --quiet -- "$sm_path"
1108 then
1109 set_name_rev "$sm_path" "$sha1"
1110 say " $sha1 $displaypath$revname"
1111 else
1112 if test -z "$cached"
1113 then
1114 sha1=$(clear_local_git_env; cd "$sm_path" && git rev-parse --verify HEAD)
1116 set_name_rev "$sm_path" "$sha1"
1117 say "+$sha1 $displaypath$revname"
1120 if test -n "$recursive"
1121 then
1123 prefix="$displaypath/"
1124 clear_local_git_env
1125 cd "$sm_path" &&
1126 eval cmd_status
1127 ) ||
1128 die "$(eval_gettext "Failed to recurse into submodule path '\$sm_path'")"
1130 done
1133 # Sync remote urls for submodules
1134 # This makes the value for remote.$remote.url match the value
1135 # specified in .gitmodules.
1137 cmd_sync()
1139 while test $# -ne 0
1141 case "$1" in
1142 -q|--quiet)
1143 GIT_QUIET=1
1144 shift
1146 --recursive)
1147 recursive=1
1148 shift
1151 shift
1152 break
1155 usage
1158 break
1160 esac
1161 done
1162 cd_to_toplevel
1163 git submodule--helper list --prefix "$wt_prefix" "$@" |
1164 while read mode sha1 stage sm_path
1166 die_if_unmatched "$mode"
1167 name=$(git submodule--helper name "$sm_path")
1168 url=$(git config -f .gitmodules --get submodule."$name".url)
1170 # Possibly a url relative to parent
1171 case "$url" in
1172 ./*|../*)
1173 # rewrite foo/bar as ../.. to find path from
1174 # submodule work tree to superproject work tree
1175 up_path="$(printf '%s\n' "$sm_path" | sed "s/[^/][^/]*/../g")" &&
1176 # guarantee a trailing /
1177 up_path=${up_path%/}/ &&
1178 # path from submodule work tree to submodule origin repo
1179 sub_origin_url=$(resolve_relative_url "$url" "$up_path") &&
1180 # path from superproject work tree to submodule origin repo
1181 super_config_url=$(resolve_relative_url "$url") || exit
1184 sub_origin_url="$url"
1185 super_config_url="$url"
1187 esac
1189 if git config "submodule.$name.url" >/dev/null 2>/dev/null
1190 then
1191 displaypath=$(relative_path "$prefix$sm_path")
1192 say "$(eval_gettext "Synchronizing submodule url for '\$displaypath'")"
1193 git config submodule."$name".url "$super_config_url"
1195 if test -e "$sm_path"/.git
1196 then
1198 clear_local_git_env
1199 cd "$sm_path"
1200 remote=$(get_default_remote)
1201 git config remote."$remote".url "$sub_origin_url"
1203 if test -n "$recursive"
1204 then
1205 prefix="$prefix$sm_path/"
1206 eval cmd_sync
1211 done
1214 # This loop parses the command line arguments to find the
1215 # subcommand name to dispatch. Parsing of the subcommand specific
1216 # options are primarily done by the subcommand implementations.
1217 # Subcommand specific options such as --branch and --cached are
1218 # parsed here as well, for backward compatibility.
1220 while test $# != 0 && test -z "$command"
1222 case "$1" in
1223 add | foreach | init | deinit | update | status | summary | sync)
1224 command=$1
1226 -q|--quiet)
1227 GIT_QUIET=1
1229 -b|--branch)
1230 case "$2" in
1232 usage
1234 esac
1235 branch="$2"; shift
1237 --cached)
1238 cached="$1"
1241 break
1244 usage
1247 break
1249 esac
1250 shift
1251 done
1253 # No command word defaults to "status"
1254 if test -z "$command"
1255 then
1256 if test $# = 0
1257 then
1258 command=status
1259 else
1260 usage
1264 # "-b branch" is accepted only by "add"
1265 if test -n "$branch" && test "$command" != add
1266 then
1267 usage
1270 # "--cached" is accepted only by "status" and "summary"
1271 if test -n "$cached" && test "$command" != status && test "$command" != summary
1272 then
1273 usage
1276 "cmd_$command" "$@"