submodule: stop sanitizing config options
[git.git] / git-submodule.sh
blobb1c056c71567522e7b1bdb94bacf10f70743e024
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"
195 # Sanitize the local git environment for use within a submodule. We
196 # can't simply use clear_local_git_env since we want to preserve some
197 # of the settings from GIT_CONFIG_PARAMETERS.
198 sanitize_submodule_env()
200 save_config=$GIT_CONFIG_PARAMETERS
201 clear_local_git_env
202 GIT_CONFIG_PARAMETERS=$save_config
203 export GIT_CONFIG_PARAMETERS
207 # Add a new submodule to the working tree, .gitmodules and the index
209 # $@ = repo path
211 # optional branch is stored in global branch variable
213 cmd_add()
215 # parse $args after "submodule ... add".
216 reference_path=
217 while test $# -ne 0
219 case "$1" in
220 -b | --branch)
221 case "$2" in '') usage ;; esac
222 branch=$2
223 shift
225 -f | --force)
226 force=$1
228 -q|--quiet)
229 GIT_QUIET=1
231 --reference)
232 case "$2" in '') usage ;; esac
233 reference_path=$2
234 shift
236 --reference=*)
237 reference_path="${1#--reference=}"
239 --name)
240 case "$2" in '') usage ;; esac
241 custom_name=$2
242 shift
244 --depth)
245 case "$2" in '') usage ;; esac
246 depth="--depth=$2"
247 shift
249 --depth=*)
250 depth=$1
253 shift
254 break
257 usage
260 break
262 esac
263 shift
264 done
266 if test -n "$reference_path"
267 then
268 is_absolute_path "$reference_path" ||
269 reference_path="$wt_prefix$reference_path"
271 reference="--reference=$reference_path"
274 repo=$1
275 sm_path=$2
277 if test -z "$sm_path"; then
278 sm_path=$(printf '%s\n' "$repo" |
279 sed -e 's|/$||' -e 's|:*/*\.git$||' -e 's|.*[/:]||g')
282 if test -z "$repo" || test -z "$sm_path"; then
283 usage
286 is_absolute_path "$sm_path" || sm_path="$wt_prefix$sm_path"
288 # assure repo is absolute or relative to parent
289 case "$repo" in
290 ./*|../*)
291 test -z "$wt_prefix" ||
292 die "$(gettext "Relative path can only be used from the toplevel of the working tree")"
294 # dereference source url relative to parent's url
295 realrepo=$(resolve_relative_url "$repo") || exit
297 *:*|/*)
298 # absolute url
299 realrepo=$repo
302 die "$(eval_gettext "repo URL: '\$repo' must be absolute or begin with ./|../")"
304 esac
306 # normalize path:
307 # multiple //; leading ./; /./; /../; trailing /
308 sm_path=$(printf '%s/\n' "$sm_path" |
309 sed -e '
310 s|//*|/|g
311 s|^\(\./\)*||
312 s|/\(\./\)*|/|g
313 :start
314 s|\([^/]*\)/\.\./||
315 tstart
316 s|/*$||
318 git ls-files --error-unmatch "$sm_path" > /dev/null 2>&1 &&
319 die "$(eval_gettext "'\$sm_path' already exists in the index")"
321 if test -z "$force" && ! git add --dry-run --ignore-missing "$sm_path" > /dev/null 2>&1
322 then
323 eval_gettextln "The following path is ignored by one of your .gitignore files:
324 \$sm_path
325 Use -f if you really want to add it." >&2
326 exit 1
329 if test -n "$custom_name"
330 then
331 sm_name="$custom_name"
332 else
333 sm_name="$sm_path"
336 # perhaps the path exists and is already a git repo, else clone it
337 if test -e "$sm_path"
338 then
339 if test -d "$sm_path"/.git || test -f "$sm_path"/.git
340 then
341 eval_gettextln "Adding existing repo at '\$sm_path' to the index"
342 else
343 die "$(eval_gettext "'\$sm_path' already exists and is not a valid git repo")"
346 else
347 if test -d ".git/modules/$sm_name"
348 then
349 if test -z "$force"
350 then
351 echo >&2 "$(eval_gettext "A git directory for '\$sm_name' is found locally with remote(s):")"
352 GIT_DIR=".git/modules/$sm_name" GIT_WORK_TREE=. git remote -v | grep '(fetch)' | sed -e s,^," ", -e s,' (fetch)',, >&2
353 echo >&2 "$(eval_gettext "If you want to reuse this local git directory instead of cloning again from")"
354 echo >&2 " $realrepo"
355 echo >&2 "$(eval_gettext "use the '--force' option. If the local git directory is not the correct repo")"
356 die "$(eval_gettext "or you are unsure what this means choose another name with the '--name' option.")"
357 else
358 echo "$(eval_gettext "Reactivating local git directory for submodule '\$sm_name'.")"
361 git submodule--helper clone ${GIT_QUIET:+--quiet} --prefix "$wt_prefix" --path "$sm_path" --name "$sm_name" --url "$realrepo" ${reference:+"$reference"} ${depth:+"$depth"} || exit
363 sanitize_submodule_env
364 cd "$sm_path" &&
365 # ash fails to wordsplit ${branch:+-b "$branch"...}
366 case "$branch" in
367 '') git checkout -f -q ;;
368 ?*) git checkout -f -q -B "$branch" "origin/$branch" ;;
369 esac
370 ) || die "$(eval_gettext "Unable to checkout submodule '\$sm_path'")"
372 git config submodule."$sm_name".url "$realrepo"
374 git add $force "$sm_path" ||
375 die "$(eval_gettext "Failed to add submodule '\$sm_path'")"
377 git config -f .gitmodules submodule."$sm_name".path "$sm_path" &&
378 git config -f .gitmodules submodule."$sm_name".url "$repo" &&
379 if test -n "$branch"
380 then
381 git config -f .gitmodules submodule."$sm_name".branch "$branch"
382 fi &&
383 git add --force .gitmodules ||
384 die "$(eval_gettext "Failed to register submodule '\$sm_path'")"
388 # Execute an arbitrary command sequence in each checked out
389 # submodule
391 # $@ = command to execute
393 cmd_foreach()
395 # parse $args after "submodule ... foreach".
396 while test $# -ne 0
398 case "$1" in
399 -q|--quiet)
400 GIT_QUIET=1
402 --recursive)
403 recursive=1
406 usage
409 break
411 esac
412 shift
413 done
415 toplevel=$(pwd)
417 # dup stdin so that it can be restored when running the external
418 # command in the subshell (and a recursive call to this function)
419 exec 3<&0
421 git submodule--helper list --prefix "$wt_prefix"|
422 while read mode sha1 stage sm_path
424 die_if_unmatched "$mode"
425 if test -e "$sm_path"/.git
426 then
427 displaypath=$(relative_path "$sm_path")
428 say "$(eval_gettext "Entering '\$prefix\$displaypath'")"
429 name=$(git submodule--helper name "$sm_path")
431 prefix="$prefix$sm_path/"
432 sanitize_submodule_env
433 cd "$sm_path" &&
434 sm_path=$(relative_path "$sm_path") &&
435 # we make $path available to scripts ...
436 path=$sm_path &&
437 if test $# -eq 1
438 then
439 eval "$1"
440 else
441 "$@"
442 fi &&
443 if test -n "$recursive"
444 then
445 cmd_foreach "--recursive" "$@"
447 ) <&3 3<&- ||
448 die "$(eval_gettext "Stopping at '\$prefix\$displaypath'; script returned non-zero status.")"
450 done
454 # Register submodules in .git/config
456 # $@ = requested paths (default to all)
458 cmd_init()
460 # parse $args after "submodule ... init".
461 while test $# -ne 0
463 case "$1" in
464 -q|--quiet)
465 GIT_QUIET=1
468 shift
469 break
472 usage
475 break
477 esac
478 shift
479 done
481 git submodule--helper list --prefix "$wt_prefix" "$@" |
482 while read mode sha1 stage sm_path
484 die_if_unmatched "$mode"
485 name=$(git submodule--helper name "$sm_path") || exit
487 displaypath=$(relative_path "$sm_path")
489 # Copy url setting when it is not set yet
490 if test -z "$(git config "submodule.$name.url")"
491 then
492 url=$(git config -f .gitmodules submodule."$name".url)
493 test -z "$url" &&
494 die "$(eval_gettext "No url found for submodule path '\$displaypath' in .gitmodules")"
496 # Possibly a url relative to parent
497 case "$url" in
498 ./*|../*)
499 url=$(resolve_relative_url "$url") || exit
501 esac
502 git config submodule."$name".url "$url" ||
503 die "$(eval_gettext "Failed to register url for submodule path '\$displaypath'")"
505 say "$(eval_gettext "Submodule '\$name' (\$url) registered for path '\$displaypath'")"
508 # Copy "update" setting when it is not set yet
509 if upd="$(git config -f .gitmodules submodule."$name".update)" &&
510 test -n "$upd" &&
511 test -z "$(git config submodule."$name".update)"
512 then
513 case "$upd" in
514 checkout | rebase | merge | none)
515 ;; # known modes of updating
517 echo >&2 "warning: unknown update mode '$upd' suggested for submodule '$name'"
518 upd=none
520 esac
521 git config submodule."$name".update "$upd" ||
522 die "$(eval_gettext "Failed to register update mode for submodule path '\$displaypath'")"
524 done
528 # Unregister submodules from .git/config and remove their work tree
530 # $@ = requested paths (use '.' to deinit all submodules)
532 cmd_deinit()
534 # parse $args after "submodule ... deinit".
535 while test $# -ne 0
537 case "$1" in
538 -f|--force)
539 force=$1
541 -q|--quiet)
542 GIT_QUIET=1
545 shift
546 break
549 usage
552 break
554 esac
555 shift
556 done
558 if test $# = 0
559 then
560 die "$(eval_gettext "Use '.' if you really want to deinitialize all submodules")"
563 git submodule--helper list --prefix "$wt_prefix" "$@" |
564 while read mode sha1 stage sm_path
566 die_if_unmatched "$mode"
567 name=$(git submodule--helper name "$sm_path") || exit
569 displaypath=$(relative_path "$sm_path")
571 # Remove the submodule work tree (unless the user already did it)
572 if test -d "$sm_path"
573 then
574 # Protect submodules containing a .git directory
575 if test -d "$sm_path/.git"
576 then
577 echo >&2 "$(eval_gettext "Submodule work tree '\$displaypath' contains a .git directory")"
578 die "$(eval_gettext "(use 'rm -rf' if you really want to remove it including all of its history)")"
581 if test -z "$force"
582 then
583 git rm -qn "$sm_path" ||
584 die "$(eval_gettext "Submodule work tree '\$displaypath' contains local modifications; use '-f' to discard them")"
586 rm -rf "$sm_path" &&
587 say "$(eval_gettext "Cleared directory '\$displaypath'")" ||
588 say "$(eval_gettext "Could not remove submodule work tree '\$displaypath'")"
591 mkdir "$sm_path" || say "$(eval_gettext "Could not create empty submodule directory '\$displaypath'")"
593 # Remove the .git/config entries (unless the user already did it)
594 if test -n "$(git config --get-regexp submodule."$name\.")"
595 then
596 # Remove the whole section so we have a clean state when
597 # the user later decides to init this submodule again
598 url=$(git config submodule."$name".url)
599 git config --remove-section submodule."$name" 2>/dev/null &&
600 say "$(eval_gettext "Submodule '\$name' (\$url) unregistered for path '\$displaypath'")"
602 done
606 # Update each submodule path to correct revision, using clone and checkout as needed
608 # $@ = requested paths (default to all)
610 cmd_update()
612 # parse $args after "submodule ... update".
613 while test $# -ne 0
615 case "$1" in
616 -q|--quiet)
617 GIT_QUIET=1
619 -i|--init)
620 init=1
622 --remote)
623 remote=1
625 -N|--no-fetch)
626 nofetch=1
628 -f|--force)
629 force=$1
631 -r|--rebase)
632 update="rebase"
634 --reference)
635 case "$2" in '') usage ;; esac
636 reference="--reference=$2"
637 shift
639 --reference=*)
640 reference="$1"
642 -m|--merge)
643 update="merge"
645 --recursive)
646 recursive=1
648 --checkout)
649 update="checkout"
651 --depth)
652 case "$2" in '') usage ;; esac
653 depth="--depth=$2"
654 shift
656 --depth=*)
657 depth=$1
660 shift
661 break
664 usage
667 break
669 esac
670 shift
671 done
673 if test -n "$init"
674 then
675 cmd_init "--" "$@" || return
678 cloned_modules=
679 git submodule--helper list --prefix "$wt_prefix" "$@" | {
680 err=
681 while read mode sha1 stage sm_path
683 die_if_unmatched "$mode"
684 if test "$stage" = U
685 then
686 echo >&2 "Skipping unmerged submodule $prefix$sm_path"
687 continue
689 name=$(git submodule--helper name "$sm_path") || exit
690 url=$(git config submodule."$name".url)
691 branch=$(get_submodule_config "$name" branch master)
692 if ! test -z "$update"
693 then
694 update_module=$update
695 else
696 update_module=$(git config submodule."$name".update)
697 if test -z "$update_module"
698 then
699 update_module="checkout"
703 displaypath=$(relative_path "$prefix$sm_path")
705 if test "$update_module" = "none"
706 then
707 echo "Skipping submodule '$displaypath'"
708 continue
711 if test -z "$url"
712 then
713 # Only mention uninitialized submodules when its
714 # path have been specified
715 test "$#" != "0" &&
716 say "$(eval_gettext "Submodule path '\$displaypath' not initialized
717 Maybe you want to use 'update --init'?")"
718 continue
721 if ! test -d "$sm_path"/.git && ! test -f "$sm_path"/.git
722 then
723 git submodule--helper clone ${GIT_QUIET:+--quiet} --prefix "$prefix" --path "$sm_path" --name "$name" --url "$url" ${reference:+"$reference"} ${depth:+"$depth"} || exit
724 cloned_modules="$cloned_modules;$name"
725 subsha1=
726 else
727 subsha1=$(sanitize_submodule_env; cd "$sm_path" &&
728 git rev-parse --verify HEAD) ||
729 die "$(eval_gettext "Unable to find current revision in submodule path '\$displaypath'")"
732 if test -n "$remote"
733 then
734 if test -z "$nofetch"
735 then
736 # Fetch remote before determining tracking $sha1
737 (sanitize_submodule_env; cd "$sm_path" && git-fetch) ||
738 die "$(eval_gettext "Unable to fetch in submodule path '\$sm_path'")"
740 remote_name=$(sanitize_submodule_env; cd "$sm_path" && get_default_remote)
741 sha1=$(sanitize_submodule_env; cd "$sm_path" &&
742 git rev-parse --verify "${remote_name}/${branch}") ||
743 die "$(eval_gettext "Unable to find current ${remote_name}/${branch} revision in submodule path '\$sm_path'")"
746 if test "$subsha1" != "$sha1" || test -n "$force"
747 then
748 subforce=$force
749 # If we don't already have a -f flag and the submodule has never been checked out
750 if test -z "$subsha1" && test -z "$force"
751 then
752 subforce="-f"
755 if test -z "$nofetch"
756 then
757 # Run fetch only if $sha1 isn't present or it
758 # is not reachable from a ref.
759 (sanitize_submodule_env; cd "$sm_path" &&
760 ( (rev=$(git rev-list -n 1 $sha1 --not --all 2>/dev/null) &&
761 test -z "$rev") || git-fetch)) ||
762 die "$(eval_gettext "Unable to fetch in submodule path '\$displaypath'")"
765 # Is this something we just cloned?
766 case ";$cloned_modules;" in
767 *";$name;"*)
768 # then there is no local change to integrate
769 update_module=checkout ;;
770 esac
772 must_die_on_failure=
773 case "$update_module" in
774 checkout)
775 command="git checkout $subforce -q"
776 die_msg="$(eval_gettext "Unable to checkout '\$sha1' in submodule path '\$displaypath'")"
777 say_msg="$(eval_gettext "Submodule path '\$displaypath': checked out '\$sha1'")"
779 rebase)
780 command="git rebase"
781 die_msg="$(eval_gettext "Unable to rebase '\$sha1' in submodule path '\$displaypath'")"
782 say_msg="$(eval_gettext "Submodule path '\$displaypath': rebased into '\$sha1'")"
783 must_die_on_failure=yes
785 merge)
786 command="git merge"
787 die_msg="$(eval_gettext "Unable to merge '\$sha1' in submodule path '\$displaypath'")"
788 say_msg="$(eval_gettext "Submodule path '\$displaypath': merged in '\$sha1'")"
789 must_die_on_failure=yes
792 command="${update_module#!}"
793 die_msg="$(eval_gettext "Execution of '\$command \$sha1' failed in submodule path '\$prefix\$sm_path'")"
794 say_msg="$(eval_gettext "Submodule path '\$prefix\$sm_path': '\$command \$sha1'")"
795 must_die_on_failure=yes
798 die "$(eval_gettext "Invalid update mode '$update_module' for submodule '$name'")"
799 esac
801 if (sanitize_submodule_env; cd "$sm_path" && $command "$sha1")
802 then
803 say "$say_msg"
804 elif test -n "$must_die_on_failure"
805 then
806 die_with_status 2 "$die_msg"
807 else
808 err="${err};$die_msg"
809 continue
813 if test -n "$recursive"
814 then
816 prefix="$prefix$sm_path/"
817 sanitize_submodule_env
818 cd "$sm_path" &&
819 eval cmd_update
821 res=$?
822 if test $res -gt 0
823 then
824 die_msg="$(eval_gettext "Failed to recurse into submodule path '\$displaypath'")"
825 if test $res -eq 1
826 then
827 err="${err};$die_msg"
828 continue
829 else
830 die_with_status $res "$die_msg"
834 done
836 if test -n "$err"
837 then
838 OIFS=$IFS
839 IFS=';'
840 for e in $err
842 if test -n "$e"
843 then
844 echo >&2 "$e"
846 done
847 IFS=$OIFS
848 exit 1
853 set_name_rev () {
854 revname=$( (
855 sanitize_submodule_env
856 cd "$1" && {
857 git describe "$2" 2>/dev/null ||
858 git describe --tags "$2" 2>/dev/null ||
859 git describe --contains "$2" 2>/dev/null ||
860 git describe --all --always "$2"
863 test -z "$revname" || revname=" ($revname)"
866 # Show commit summary for submodules in index or working tree
868 # If '--cached' is given, show summary between index and given commit,
869 # or between working tree and given commit
871 # $@ = [commit (default 'HEAD'),] requested paths (default all)
873 cmd_summary() {
874 summary_limit=-1
875 for_status=
876 diff_cmd=diff-index
878 # parse $args after "submodule ... summary".
879 while test $# -ne 0
881 case "$1" in
882 --cached)
883 cached="$1"
885 --files)
886 files="$1"
888 --for-status)
889 for_status="$1"
891 -n|--summary-limit)
892 summary_limit="$2"
893 isnumber "$summary_limit" || usage
894 shift
896 --summary-limit=*)
897 summary_limit="${1#--summary-limit=}"
898 isnumber "$summary_limit" || usage
901 shift
902 break
905 usage
908 break
910 esac
911 shift
912 done
914 test $summary_limit = 0 && return
916 if rev=$(git rev-parse -q --verify --default HEAD ${1+"$1"})
917 then
918 head=$rev
919 test $# = 0 || shift
920 elif test -z "$1" || test "$1" = "HEAD"
921 then
922 # before the first commit: compare with an empty tree
923 head=$(git hash-object -w -t tree --stdin </dev/null)
924 test -z "$1" || shift
925 else
926 head="HEAD"
929 if [ -n "$files" ]
930 then
931 test -n "$cached" &&
932 die "$(gettext "The --cached option cannot be used with the --files option")"
933 diff_cmd=diff-files
934 head=
937 cd_to_toplevel
938 eval "set $(git rev-parse --sq --prefix "$wt_prefix" -- "$@")"
939 # Get modified modules cared by user
940 modules=$(git $diff_cmd $cached --ignore-submodules=dirty --raw $head -- "$@" |
941 sane_egrep '^:([0-7]* )?160000' |
942 while read mod_src mod_dst sha1_src sha1_dst status sm_path
944 # Always show modules deleted or type-changed (blob<->module)
945 if test "$status" = D || test "$status" = T
946 then
947 printf '%s\n' "$sm_path"
948 continue
950 # Respect the ignore setting for --for-status.
951 if test -n "$for_status"
952 then
953 name=$(git submodule--helper name "$sm_path")
954 ignore_config=$(get_submodule_config "$name" ignore none)
955 test $status != A && test $ignore_config = all && continue
957 # Also show added or modified modules which are checked out
958 GIT_DIR="$sm_path/.git" git-rev-parse --git-dir >/dev/null 2>&1 &&
959 printf '%s\n' "$sm_path"
960 done
963 test -z "$modules" && return
965 git $diff_cmd $cached --ignore-submodules=dirty --raw $head -- $modules |
966 sane_egrep '^:([0-7]* )?160000' |
967 cut -c2- |
968 while read mod_src mod_dst sha1_src sha1_dst status name
970 if test -z "$cached" &&
971 test $sha1_dst = 0000000000000000000000000000000000000000
972 then
973 case "$mod_dst" in
974 160000)
975 sha1_dst=$(GIT_DIR="$name/.git" git rev-parse HEAD)
977 100644 | 100755 | 120000)
978 sha1_dst=$(git hash-object $name)
980 000000)
981 ;; # removed
983 # unexpected type
984 eval_gettextln "unexpected mode \$mod_dst" >&2
985 continue ;;
986 esac
988 missing_src=
989 missing_dst=
991 test $mod_src = 160000 &&
992 ! GIT_DIR="$name/.git" git-rev-parse -q --verify $sha1_src^0 >/dev/null &&
993 missing_src=t
995 test $mod_dst = 160000 &&
996 ! GIT_DIR="$name/.git" git-rev-parse -q --verify $sha1_dst^0 >/dev/null &&
997 missing_dst=t
999 display_name=$(relative_path "$name")
1001 total_commits=
1002 case "$missing_src,$missing_dst" in
1004 errmsg="$(eval_gettext " Warn: \$display_name doesn't contain commit \$sha1_src")"
1007 errmsg="$(eval_gettext " Warn: \$display_name doesn't contain commit \$sha1_dst")"
1009 t,t)
1010 errmsg="$(eval_gettext " Warn: \$display_name doesn't contain commits \$sha1_src and \$sha1_dst")"
1013 errmsg=
1014 total_commits=$(
1015 if test $mod_src = 160000 && test $mod_dst = 160000
1016 then
1017 range="$sha1_src...$sha1_dst"
1018 elif test $mod_src = 160000
1019 then
1020 range=$sha1_src
1021 else
1022 range=$sha1_dst
1024 GIT_DIR="$name/.git" \
1025 git rev-list --first-parent $range -- | wc -l
1027 total_commits=" ($(($total_commits + 0)))"
1029 esac
1031 sha1_abbr_src=$(echo $sha1_src | cut -c1-7)
1032 sha1_abbr_dst=$(echo $sha1_dst | cut -c1-7)
1033 if test $status = T
1034 then
1035 blob="$(gettext "blob")"
1036 submodule="$(gettext "submodule")"
1037 if test $mod_dst = 160000
1038 then
1039 echo "* $display_name $sha1_abbr_src($blob)->$sha1_abbr_dst($submodule)$total_commits:"
1040 else
1041 echo "* $display_name $sha1_abbr_src($submodule)->$sha1_abbr_dst($blob)$total_commits:"
1043 else
1044 echo "* $display_name $sha1_abbr_src...$sha1_abbr_dst$total_commits:"
1046 if test -n "$errmsg"
1047 then
1048 # Don't give error msg for modification whose dst is not submodule
1049 # i.e. deleted or changed to blob
1050 test $mod_dst = 160000 && echo "$errmsg"
1051 else
1052 if test $mod_src = 160000 && test $mod_dst = 160000
1053 then
1054 limit=
1055 test $summary_limit -gt 0 && limit="-$summary_limit"
1056 GIT_DIR="$name/.git" \
1057 git log $limit --pretty='format: %m %s' \
1058 --first-parent $sha1_src...$sha1_dst
1059 elif test $mod_dst = 160000
1060 then
1061 GIT_DIR="$name/.git" \
1062 git log --pretty='format: > %s' -1 $sha1_dst
1063 else
1064 GIT_DIR="$name/.git" \
1065 git log --pretty='format: < %s' -1 $sha1_src
1067 echo
1069 echo
1070 done
1073 # List all submodules, prefixed with:
1074 # - submodule not initialized
1075 # + different revision checked out
1077 # If --cached was specified the revision in the index will be printed
1078 # instead of the currently checked out revision.
1080 # $@ = requested paths (default to all)
1082 cmd_status()
1084 # parse $args after "submodule ... status".
1085 while test $# -ne 0
1087 case "$1" in
1088 -q|--quiet)
1089 GIT_QUIET=1
1091 --cached)
1092 cached=1
1094 --recursive)
1095 recursive=1
1098 shift
1099 break
1102 usage
1105 break
1107 esac
1108 shift
1109 done
1111 git submodule--helper list --prefix "$wt_prefix" "$@" |
1112 while read mode sha1 stage sm_path
1114 die_if_unmatched "$mode"
1115 name=$(git submodule--helper name "$sm_path") || exit
1116 url=$(git config submodule."$name".url)
1117 displaypath=$(relative_path "$prefix$sm_path")
1118 if test "$stage" = U
1119 then
1120 say "U$sha1 $displaypath"
1121 continue
1123 if test -z "$url" ||
1125 ! test -d "$sm_path"/.git &&
1126 ! test -f "$sm_path"/.git
1128 then
1129 say "-$sha1 $displaypath"
1130 continue;
1132 if git diff-files --ignore-submodules=dirty --quiet -- "$sm_path"
1133 then
1134 set_name_rev "$sm_path" "$sha1"
1135 say " $sha1 $displaypath$revname"
1136 else
1137 if test -z "$cached"
1138 then
1139 sha1=$(sanitize_submodule_env; cd "$sm_path" && git rev-parse --verify HEAD)
1141 set_name_rev "$sm_path" "$sha1"
1142 say "+$sha1 $displaypath$revname"
1145 if test -n "$recursive"
1146 then
1148 prefix="$displaypath/"
1149 sanitize_submodule_env
1150 cd "$sm_path" &&
1151 eval cmd_status
1152 ) ||
1153 die "$(eval_gettext "Failed to recurse into submodule path '\$sm_path'")"
1155 done
1158 # Sync remote urls for submodules
1159 # This makes the value for remote.$remote.url match the value
1160 # specified in .gitmodules.
1162 cmd_sync()
1164 while test $# -ne 0
1166 case "$1" in
1167 -q|--quiet)
1168 GIT_QUIET=1
1169 shift
1171 --recursive)
1172 recursive=1
1173 shift
1176 shift
1177 break
1180 usage
1183 break
1185 esac
1186 done
1187 cd_to_toplevel
1188 git submodule--helper list --prefix "$wt_prefix" "$@" |
1189 while read mode sha1 stage sm_path
1191 die_if_unmatched "$mode"
1192 name=$(git submodule--helper name "$sm_path")
1193 url=$(git config -f .gitmodules --get submodule."$name".url)
1195 # Possibly a url relative to parent
1196 case "$url" in
1197 ./*|../*)
1198 # rewrite foo/bar as ../.. to find path from
1199 # submodule work tree to superproject work tree
1200 up_path="$(printf '%s\n' "$sm_path" | sed "s/[^/][^/]*/../g")" &&
1201 # guarantee a trailing /
1202 up_path=${up_path%/}/ &&
1203 # path from submodule work tree to submodule origin repo
1204 sub_origin_url=$(resolve_relative_url "$url" "$up_path") &&
1205 # path from superproject work tree to submodule origin repo
1206 super_config_url=$(resolve_relative_url "$url") || exit
1209 sub_origin_url="$url"
1210 super_config_url="$url"
1212 esac
1214 if git config "submodule.$name.url" >/dev/null 2>/dev/null
1215 then
1216 displaypath=$(relative_path "$prefix$sm_path")
1217 say "$(eval_gettext "Synchronizing submodule url for '\$displaypath'")"
1218 git config submodule."$name".url "$super_config_url"
1220 if test -e "$sm_path"/.git
1221 then
1223 sanitize_submodule_env
1224 cd "$sm_path"
1225 remote=$(get_default_remote)
1226 git config remote."$remote".url "$sub_origin_url"
1228 if test -n "$recursive"
1229 then
1230 prefix="$prefix$sm_path/"
1231 eval cmd_sync
1236 done
1239 # This loop parses the command line arguments to find the
1240 # subcommand name to dispatch. Parsing of the subcommand specific
1241 # options are primarily done by the subcommand implementations.
1242 # Subcommand specific options such as --branch and --cached are
1243 # parsed here as well, for backward compatibility.
1245 while test $# != 0 && test -z "$command"
1247 case "$1" in
1248 add | foreach | init | deinit | update | status | summary | sync)
1249 command=$1
1251 -q|--quiet)
1252 GIT_QUIET=1
1254 -b|--branch)
1255 case "$2" in
1257 usage
1259 esac
1260 branch="$2"; shift
1262 --cached)
1263 cached="$1"
1266 break
1269 usage
1272 break
1274 esac
1275 shift
1276 done
1278 # No command word defaults to "status"
1279 if test -z "$command"
1280 then
1281 if test $# = 0
1282 then
1283 command=status
1284 else
1285 usage
1289 # "-b branch" is accepted only by "add"
1290 if test -n "$branch" && test "$command" != add
1291 then
1292 usage
1295 # "--cached" is accepted only by "status" and "summary"
1296 if test -n "$cached" && test "$command" != status && test "$command" != summary
1297 then
1298 usage
1301 "cmd_$command" "$@"