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] [--rebase] [--reference <repository>] [--merge] [--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>...]"
22 wt_prefix=$(git rev-parse --show-prefix)
39 # The function takes at most 2 arguments. The first argument is the
40 # URL that navigates to the submodule origin repo. When relative, this URL
41 # is relative to the superproject origin URL repo. The second up_path
42 # argument, if specified, is the relative path that navigates
43 # from the submodule working tree to the superproject working tree.
45 # The output of the function is the origin URL of the submodule.
47 # The output will either be an absolute URL or filesystem path (if the
48 # superproject origin URL is an absolute URL or filesystem path,
49 # respectively) or a relative file system path (if the superproject
50 # origin URL is a relative file system path).
52 # When the output is a relative file system path, the path is either
53 # relative to the submodule working tree, if up_path is specified, or to
54 # the superproject working tree otherwise.
55 resolve_relative_url ()
57 remote=$(get_default_remote)
58 remoteurl=$(git config "remote.$remote.url") ||
59 remoteurl=$(pwd) # the repository is its own authoritative upstream
61 remoteurl=${remoteurl%/}
74 remoteurl="./$remoteurl"
85 remoteurl="${remoteurl%/*}"
88 remoteurl="${remoteurl%:*}"
92 if test -z "$is_relative" || test "." = "$remoteurl"
94 die "$(eval_gettext "cannot strip one component off url '\$remoteurl'")"
108 remoteurl="$remoteurl$sep${url%/}"
109 echo "${is_relative:+${up_path}}${remoteurl#./}"
112 # Resolve a path to be relative to another path. This is intended for
113 # converting submodule paths when git-submodule is run in a subdirectory
114 # and only handles paths where the directory separator is '/'.
116 # The output is the first argument as a path relative to the second argument,
117 # which defaults to $wt_prefix if it is omitted.
120 local target curdir result
122 curdir=${2-$wt_prefix}
126 while test -n "$curdir"
130 target=${target#"$curdir"/}
135 result="${result}../"
136 if test "$curdir" = "${curdir%/*}"
140 curdir="${curdir%/*}"
144 echo "$result$target"
148 # Get submodule info for registered submodules
149 # $@ = path to limit submodule list
153 eval "set $(git rev-parse --sq --prefix "$wt_prefix" -- "$@")"
155 git ls-files --error-unmatch --stage -- "$@" ||
156 echo "unmatched pathspec exists"
160 my ($null_sha1) = ("0" x 40);
164 if (/^unmatched pathspec/) {
169 my ($mode, $sha1, $stage, $path) =
170 /^([0-7]+) ([0-9a-f]{40}) ([0-3])\t(.*)$/;
171 next unless $mode eq "160000";
173 if (!$unmerged{$path}++) {
174 push @out, "$mode $null_sha1 U\t$path\n";
181 print "#unmatched\n";
190 if test "$1" = "#unmatched"
197 # Print a submodule configuration setting
199 # $1 = submodule name
203 # Checks in the usual git-config places first (for overrides),
204 # otherwise it falls back on .gitmodules. This allows you to
205 # distribute project-wide defaults in .gitmodules, while still
206 # customizing individual repositories if necessary. If the option is
207 # not in .gitmodules either, print a default value.
209 get_submodule_config () {
213 value=$(git config submodule."$name"."$option")
216 value=$(git config -f .gitmodules submodule."$name"."$option")
218 printf '%s' "${value:-$default}"
223 # Map submodule path to submodule name
229 # Do we have "submodule.<something>.path = $1" defined in .gitmodules file?
231 re=$(printf '%s\n' "$1" | sed -e 's/[].[^$\\*]/\\&/g')
232 name=$( git config -f .gitmodules --get-regexp '^submodule\..*\.path$' |
233 sed -n -e 's|^submodule\.\(.*\)\.path '"$re"'$|\1|p' )
235 die "$(eval_gettext "No submodule mapping found in .gitmodules for path '\$sm_path'")"
242 # Prior to calling, cmd_update checks that a possibly existing
243 # path is not a git repository.
244 # Likewise, cmd_add checks that path does not exist at all,
245 # since it is the location of a new submodule.
254 if test -n "$GIT_QUIET"
261 base_name=$(dirname "$name")
263 gitdir=$(git rev-parse --git-dir)
264 gitdir_base="$gitdir/modules/$base_name"
265 gitdir="$gitdir/modules/$name"
270 rm -f "$gitdir/index"
272 mkdir -p "$gitdir_base"
275 git clone $quiet -n ${reference:+"$reference"} \
276 --separate-git-dir "$gitdir" "$url" "$sm_path"
278 die "$(eval_gettext "Clone of '\$url' into submodule path '\$sm_path' failed")"
281 # We already are at the root of the work tree but cd_to_toplevel will
282 # resolve any symlinks that might be present in $PWD
283 a=$(cd_to_toplevel && cd "$gitdir" && pwd)/
284 b=$(cd_to_toplevel && cd "$sm_path" && pwd)/
285 # normalize Windows-style absolute paths to POSIX-style absolute paths
286 case $a in [a-zA-Z]:/*) a=/${a%%:*}${a#*:} ;; esac
287 case $b in [a-zA-Z]:/*) b=/${b%%:*}${b#*:} ;; esac
288 # Remove all common leading directories after a sanity check
289 if test "${a#$b}" != "$a" || test "${b#$a}" != "$b"; then
290 die "$(eval_gettext "Gitdir '\$a' is part of the submodule path '\$b' or vice versa")"
292 while test "${a%%/*}" = "${b%%/*}"
297 # Now chop off the trailing '/'s that were added in the beginning
301 # Turn each leading "*/" component into "../"
302 rel=$(echo $b | sed -e 's|[^/][^/]*|..|g')
303 echo "gitdir: $rel/$a" >"$sm_path/.git"
305 rel=$(echo $a | sed -e 's|[^/][^/]*|..|g')
306 (clear_local_git_env; cd "$sm_path" && GIT_WORK_TREE=. git config core.worktree "$rel/$b")
311 n=$(($1 + 0)) 2>/dev/null && test "$n" = "$1"
315 # Add a new submodule to the working tree, .gitmodules and the index
319 # optional branch is stored in global branch variable
323 # parse $args after "submodule ... add".
329 case "$2" in '') usage ;; esac
340 case "$2" in '') usage ;; esac
345 reference_path="${1#--reference=}"
348 case "$2" in '') usage ;; esac
366 if test -n "$reference_path"
368 is_absolute_path "$reference_path" ||
369 reference_path="$wt_prefix$reference_path"
371 reference="--reference=$reference_path"
377 if test -z "$sm_path"; then
378 sm_path=$(echo "$repo" |
379 sed -e 's|/$||' -e 's|:*/*\.git$||' -e 's|.*[/:]||g')
382 if test -z "$repo" -o -z "$sm_path"; then
386 is_absolute_path "$sm_path" || sm_path="$wt_prefix$sm_path"
388 # assure repo is absolute or relative to parent
391 test -z "$wt_prefix" ||
392 die "$(gettext "Relative path can only be used from the toplevel of the working tree")"
394 # dereference source url relative to parent's url
395 realrepo=$(resolve_relative_url "$repo") || exit
402 die "$(eval_gettext "repo URL: '\$repo' must be absolute or begin with ./|../")"
407 # multiple //; leading ./; /./; /../; trailing /
408 sm_path=$(printf '%s/\n' "$sm_path" |
418 git ls-files --error-unmatch "$sm_path" > /dev/null 2>&1 &&
419 die "$(eval_gettext "'\$sm_path' already exists in the index")"
421 if test -z "$force" && ! git add --dry-run --ignore-missing "$sm_path" > /dev/null 2>&1
423 eval_gettextln "The following path is ignored by one of your .gitignore files:
425 Use -f if you really want to add it." >&2
429 if test -n "$custom_name"
431 sm_name="$custom_name"
436 # perhaps the path exists and is already a git repo, else clone it
437 if test -e "$sm_path"
439 if test -d "$sm_path"/.git -o -f "$sm_path"/.git
441 eval_gettextln "Adding existing repo at '\$sm_path' to the index"
443 die "$(eval_gettext "'\$sm_path' already exists and is not a valid git repo")"
447 if test -d ".git/modules/$sm_name"
451 echo >&2 "$(eval_gettext "A git directory for '\$sm_name' is found locally with remote(s):")"
452 GIT_DIR=".git/modules/$sm_name" GIT_WORK_TREE=. git remote -v | grep '(fetch)' | sed -e s,^," ", -e s,' (fetch)',, >&2
453 echo >&2 "$(eval_gettext "If you want to reuse this local git directory instead of cloning again from")"
454 echo >&2 " $realrepo"
455 echo >&2 "$(eval_gettext "use the '--force' option. If the local git directory is not the correct repo")"
456 die "$(eval_gettext "or you are unsure what this means choose another name with the '--name' option.")"
458 echo "$(eval_gettext "Reactivating local git directory for submodule '\$sm_name'.")"
461 module_clone "$sm_path" "$sm_name" "$realrepo" "$reference" || exit
465 # ash fails to wordsplit ${branch:+-b "$branch"...}
467 '') git checkout -f -q ;;
468 ?*) git checkout -f -q -B "$branch" "origin/$branch" ;;
470 ) || die "$(eval_gettext "Unable to checkout submodule '\$sm_path'")"
472 git config submodule."$sm_name".url "$realrepo"
474 git add $force "$sm_path" ||
475 die "$(eval_gettext "Failed to add submodule '\$sm_path'")"
477 git config -f .gitmodules submodule."$sm_name".path "$sm_path" &&
478 git config -f .gitmodules submodule."$sm_name".url "$repo" &&
481 git config -f .gitmodules submodule."$sm_name".branch "$branch"
483 git add --force .gitmodules ||
484 die "$(eval_gettext "Failed to register submodule '\$sm_path'")"
488 # Execute an arbitrary command sequence in each checked out
491 # $@ = command to execute
495 # parse $args after "submodule ... foreach".
517 # dup stdin so that it can be restored when running the external
518 # command in the subshell (and a recursive call to this function)
522 while read mode sha1 stage sm_path
524 die_if_unmatched "$mode"
525 if test -e "$sm_path"/.git
527 displaypath=$(relative_path "$sm_path")
528 say "$(eval_gettext "Entering '\$prefix\$displaypath'")"
529 name=$(module_name "$sm_path")
531 prefix="$prefix$sm_path/"
534 sm_path=$(relative_path "$sm_path") &&
535 # we make $path available to scripts ...
538 if test -n "$recursive"
540 cmd_foreach "--recursive" "$@"
543 die "$(eval_gettext "Stopping at '\$prefix\$displaypath'; script returned non-zero status.")"
549 # Register submodules in .git/config
551 # $@ = requested paths (default to all)
555 # parse $args after "submodule ... init".
577 while read mode sha1 stage sm_path
579 die_if_unmatched "$mode"
580 name=$(module_name "$sm_path") || exit
582 displaypath=$(relative_path "$sm_path")
584 # Copy url setting when it is not set yet
585 if test -z "$(git config "submodule.$name.url")"
587 url=$(git config -f .gitmodules submodule."$name".url)
589 die "$(eval_gettext "No url found for submodule path '\$displaypath' in .gitmodules")"
591 # Possibly a url relative to parent
594 url=$(resolve_relative_url "$url") || exit
597 git config submodule."$name".url "$url" ||
598 die "$(eval_gettext "Failed to register url for submodule path '\$displaypath'")"
600 say "$(eval_gettext "Submodule '\$name' (\$url) registered for path '\$displaypath'")"
603 # Copy "update" setting when it is not set yet
604 upd="$(git config -f .gitmodules submodule."$name".update)"
606 test -n "$(git config submodule."$name".update)" ||
607 git config submodule."$name".update "$upd" ||
608 die "$(eval_gettext "Failed to register update mode for submodule path '\$displaypath'")"
613 # Unregister submodules from .git/config and remove their work tree
615 # $@ = requested paths (use '.' to deinit all submodules)
619 # parse $args after "submodule ... deinit".
645 die "$(eval_gettext "Use '.' if you really want to deinitialize all submodules")"
649 while read mode sha1 stage sm_path
651 die_if_unmatched "$mode"
652 name=$(module_name "$sm_path") || exit
654 displaypath=$(relative_path "$sm_path")
656 # Remove the submodule work tree (unless the user already did it)
657 if test -d "$sm_path"
659 # Protect submodules containing a .git directory
660 if test -d "$sm_path/.git"
662 echo >&2 "$(eval_gettext "Submodule work tree '\$displaypath' contains a .git directory")"
663 die "$(eval_gettext "(use 'rm -rf' if you really want to remove it including all of its history)")"
668 git rm -qn "$sm_path" ||
669 die "$(eval_gettext "Submodule work tree '\$displaypath' contains local modifications; use '-f' to discard them")"
672 say "$(eval_gettext "Cleared directory '\$displaypath'")" ||
673 say "$(eval_gettext "Could not remove submodule work tree '\$displaypath'")"
676 mkdir "$sm_path" || say "$(eval_gettext "Could not create empty submodule directory '\$displaypath'")"
678 # Remove the .git/config entries (unless the user already did it)
679 if test -n "$(git config --get-regexp submodule."$name\.")"
681 # Remove the whole section so we have a clean state when
682 # the user later decides to init this submodule again
683 url=$(git config submodule."$name".url)
684 git config --remove-section submodule."$name" 2>/dev/null &&
685 say "$(eval_gettext "Submodule '\$name' (\$url) unregistered for path '\$displaypath'")"
691 # Update each submodule path to correct revision, using clone and checkout as needed
693 # $@ = requested paths (default to all)
697 # parse $args after "submodule ... update".
721 case "$2" in '') usage ;; esac
722 reference="--reference=$2"
723 orig_flags="$orig_flags $(git rev-parse --sq-quote "$1")"
749 orig_flags="$orig_flags $(git rev-parse --sq-quote "$1")"
755 cmd_init "--" "$@" || return
761 while read mode sha1 stage sm_path
763 die_if_unmatched "$mode"
766 echo >&2 "Skipping unmerged submodule $prefix$sm_path"
769 name=$(module_name "$sm_path") || exit
770 url=$(git config submodule."$name".url)
771 branch=$(get_submodule_config "$name" branch master)
772 if ! test -z "$update"
774 update_module=$update
776 update_module=$(git config submodule."$name".update)
779 displaypath=$(relative_path "$prefix$sm_path")
781 if test "$update_module" = "none"
783 echo "Skipping submodule '$displaypath'"
789 # Only mention uninitialized submodules when its
790 # path have been specified
792 say "$(eval_gettext "Submodule path '\$displaypath' not initialized
793 Maybe you want to use 'update --init'?")"
797 if ! test -d "$sm_path"/.git -o -f "$sm_path"/.git
799 module_clone "$sm_path" "$name" "$url" "$reference" || exit
800 cloned_modules="$cloned_modules;$name"
803 subsha1=$(clear_local_git_env; cd "$sm_path" &&
804 git rev-parse --verify HEAD) ||
805 die "$(eval_gettext "Unable to find current revision in submodule path '\$displaypath'")"
810 if test -z "$nofetch"
812 # Fetch remote before determining tracking $sha1
813 (clear_local_git_env; cd "$sm_path" && git-fetch) ||
814 die "$(eval_gettext "Unable to fetch in submodule path '\$sm_path'")"
816 remote_name=$(clear_local_git_env; cd "$sm_path" && get_default_remote)
817 sha1=$(clear_local_git_env; cd "$sm_path" &&
818 git rev-parse --verify "${remote_name}/${branch}") ||
819 die "$(eval_gettext "Unable to find current ${remote_name}/${branch} revision in submodule path '\$sm_path'")"
822 if test "$subsha1" != "$sha1" -o -n "$force"
825 # If we don't already have a -f flag and the submodule has never been checked out
826 if test -z "$subsha1" -a -z "$force"
831 if test -z "$nofetch"
833 # Run fetch only if $sha1 isn't present or it
834 # is not reachable from a ref.
835 (clear_local_git_env; cd "$sm_path" &&
836 ( (rev=$(git rev-list -n 1 $sha1 --not --all 2>/dev/null) &&
837 test -z "$rev") || git-fetch)) ||
838 die "$(eval_gettext "Unable to fetch in submodule path '\$displaypath'")"
841 # Is this something we just cloned?
842 case ";$cloned_modules;" in
844 # then there is no local change to integrate
849 case "$update_module" in
852 die_msg="$(eval_gettext "Unable to rebase '\$sha1' in submodule path '\$displaypath'")"
853 say_msg="$(eval_gettext "Submodule path '\$displaypath': rebased into '\$sha1'")"
854 must_die_on_failure=yes
858 die_msg="$(eval_gettext "Unable to merge '\$sha1' in submodule path '\$displaypath'")"
859 say_msg="$(eval_gettext "Submodule path '\$displaypath': merged in '\$sha1'")"
860 must_die_on_failure=yes
863 command="git checkout $subforce -q"
864 die_msg="$(eval_gettext "Unable to checkout '\$sha1' in submodule path '\$displaypath'")"
865 say_msg="$(eval_gettext "Submodule path '\$displaypath': checked out '\$sha1'")"
869 if (clear_local_git_env; cd "$sm_path" && $command "$sha1")
872 elif test -n "$must_die_on_failure"
874 die_with_status 2 "$die_msg"
876 err="${err};$die_msg"
881 if test -n "$recursive"
884 prefix="$prefix$sm_path/"
887 eval cmd_update "$orig_flags"
892 die_msg="$(eval_gettext "Failed to recurse into submodule path '\$displaypath'")"
895 err="${err};$die_msg"
898 die_with_status $res "$die_msg"
925 git describe "$2" 2>/dev/null ||
926 git describe --tags "$2" 2>/dev/null ||
927 git describe --contains "$2" 2>/dev/null ||
928 git describe --all --always "$2"
931 test -z "$revname" || revname=" ($revname)"
934 # Show commit summary for submodules in index or working tree
936 # If '--cached' is given, show summary between index and given commit,
937 # or between working tree and given commit
939 # $@ = [commit (default 'HEAD'),] requested paths (default all)
946 # parse $args after "submodule ... summary".
961 isnumber "$summary_limit" || usage
965 summary_limit="${1#--summary-limit=}"
966 isnumber "$summary_limit" || usage
982 test $summary_limit = 0 && return
984 if rev=$(git rev-parse -q --verify --default HEAD ${1+"$1"})
988 elif test -z "$1" -o "$1" = "HEAD"
990 # before the first commit: compare with an empty tree
991 head=$(git hash-object -w -t tree --stdin </dev/null)
992 test -z "$1" || shift
1000 die "$(gettext "The --cached option cannot be used with the --files option")"
1006 eval "set $(git rev-parse --sq --prefix "$wt_prefix" -- "$@")"
1007 # Get modified modules cared by user
1008 modules=$(git $diff_cmd $cached --ignore-submodules=dirty --raw $head -- "$@" |
1009 sane_egrep '^:([0-7]* )?160000' |
1010 while read mod_src mod_dst sha1_src sha1_dst status name
1012 # Always show modules deleted or type-changed (blob<->module)
1013 test $status = D -o $status = T && echo "$name" && continue
1014 # Also show added or modified modules which are checked out
1015 GIT_DIR="$name/.git" git-rev-parse --git-dir >/dev/null 2>&1 &&
1020 test -z "$modules" && return
1022 git $diff_cmd $cached --ignore-submodules=dirty --raw $head -- $modules |
1023 sane_egrep '^:([0-7]* )?160000' |
1025 while read mod_src mod_dst sha1_src sha1_dst status name
1027 if test -z "$cached" &&
1028 test $sha1_dst = 0000000000000000000000000000000000000000
1032 sha1_dst=$(GIT_DIR="$name/.git" git rev-parse HEAD)
1034 100644 | 100755 | 120000)
1035 sha1_dst=$(git hash-object $name)
1041 eval_gettextln "unexpected mode \$mod_dst" >&2
1048 test $mod_src = 160000 &&
1049 ! GIT_DIR="$name/.git" git-rev-parse -q --verify $sha1_src^0 >/dev/null &&
1052 test $mod_dst = 160000 &&
1053 ! GIT_DIR="$name/.git" git-rev-parse -q --verify $sha1_dst^0 >/dev/null &&
1056 display_name=$(relative_path "$name")
1059 case "$missing_src,$missing_dst" in
1061 errmsg="$(eval_gettext " Warn: \$display_name doesn't contain commit \$sha1_src")"
1064 errmsg="$(eval_gettext " Warn: \$display_name doesn't contain commit \$sha1_dst")"
1067 errmsg="$(eval_gettext " Warn: \$display_name doesn't contain commits \$sha1_src and \$sha1_dst")"
1072 if test $mod_src = 160000 -a $mod_dst = 160000
1074 range="$sha1_src...$sha1_dst"
1075 elif test $mod_src = 160000
1081 GIT_DIR="$name/.git" \
1082 git rev-list --first-parent $range -- | wc -l
1084 total_commits=" ($(($total_commits + 0)))"
1088 sha1_abbr_src=$(echo $sha1_src | cut -c1-7)
1089 sha1_abbr_dst=$(echo $sha1_dst | cut -c1-7)
1092 blob="$(gettext "blob")"
1093 submodule="$(gettext "submodule")"
1094 if test $mod_dst = 160000
1096 echo "* $display_name $sha1_abbr_src($blob)->$sha1_abbr_dst($submodule)$total_commits:"
1098 echo "* $display_name $sha1_abbr_src($submodule)->$sha1_abbr_dst($blob)$total_commits:"
1101 echo "* $display_name $sha1_abbr_src...$sha1_abbr_dst$total_commits:"
1103 if test -n "$errmsg"
1105 # Don't give error msg for modification whose dst is not submodule
1106 # i.e. deleted or changed to blob
1107 test $mod_dst = 160000 && echo "$errmsg"
1109 if test $mod_src = 160000 -a $mod_dst = 160000
1112 test $summary_limit -gt 0 && limit="-$summary_limit"
1113 GIT_DIR="$name/.git" \
1114 git log $limit --pretty='format: %m %s' \
1115 --first-parent $sha1_src...$sha1_dst
1116 elif test $mod_dst = 160000
1118 GIT_DIR="$name/.git" \
1119 git log --pretty='format: > %s' -1 $sha1_dst
1121 GIT_DIR="$name/.git" \
1122 git log --pretty='format: < %s' -1 $sha1_src
1128 if test -n "$for_status"; then
1129 if [ -n "$files" ]; then
1130 gettextln "Submodules changed but not updated:" | git stripspace -c
1132 gettextln "Submodule changes to be committed:" | git stripspace -c
1134 printf "\n" | git stripspace -c
1141 # List all submodules, prefixed with:
1142 # - submodule not initialized
1143 # + different revision checked out
1145 # If --cached was specified the revision in the index will be printed
1146 # instead of the currently checked out revision.
1148 # $@ = requested paths (default to all)
1152 # parse $args after "submodule ... status".
1180 while read mode sha1 stage sm_path
1182 die_if_unmatched "$mode"
1183 name=$(module_name "$sm_path") || exit
1184 url=$(git config submodule."$name".url)
1185 displaypath=$(relative_path "$prefix$sm_path")
1186 if test "$stage" = U
1188 say "U$sha1 $displaypath"
1191 if test -z "$url" || ! test -d "$sm_path"/.git -o -f "$sm_path"/.git
1193 say "-$sha1 $displaypath"
1196 set_name_rev "$sm_path" "$sha1"
1197 if git diff-files --ignore-submodules=dirty --quiet -- "$sm_path"
1199 say " $sha1 $displaypath$revname"
1201 if test -z "$cached"
1203 sha1=$(clear_local_git_env; cd "$sm_path" && git rev-parse --verify HEAD)
1204 set_name_rev "$sm_path" "$sha1"
1206 say "+$sha1 $displaypath$revname"
1209 if test -n "$recursive"
1212 prefix="$displaypath/"
1217 die "$(eval_gettext "Failed to recurse into submodule path '\$sm_path'")"
1222 # Sync remote urls for submodules
1223 # This makes the value for remote.$remote.url match the value
1224 # specified in .gitmodules.
1253 while read mode sha1 stage sm_path
1255 die_if_unmatched "$mode"
1256 name=$(module_name "$sm_path")
1257 url=$(git config -f .gitmodules --get submodule."$name".url)
1259 # Possibly a url relative to parent
1262 # rewrite foo/bar as ../.. to find path from
1263 # submodule work tree to superproject work tree
1264 up_path="$(echo "$sm_path" | sed "s/[^/][^/]*/../g")" &&
1265 # guarantee a trailing /
1266 up_path=${up_path%/}/ &&
1267 # path from submodule work tree to submodule origin repo
1268 sub_origin_url=$(resolve_relative_url "$url" "$up_path") &&
1269 # path from superproject work tree to submodule origin repo
1270 super_config_url=$(resolve_relative_url "$url") || exit
1273 sub_origin_url="$url"
1274 super_config_url="$url"
1278 if git config "submodule.$name.url" >/dev/null 2>/dev/null
1280 displaypath=$(relative_path "$prefix$sm_path")
1281 say "$(eval_gettext "Synchronizing submodule url for '\$displaypath'")"
1282 git config submodule."$name".url "$super_config_url"
1284 if test -e "$sm_path"/.git
1289 remote=$(get_default_remote)
1290 git config remote."$remote".url "$sub_origin_url"
1292 if test -n "$recursive"
1294 prefix="$prefix$sm_path/"
1303 # This loop parses the command line arguments to find the
1304 # subcommand name to dispatch. Parsing of the subcommand specific
1305 # options are primarily done by the subcommand implementations.
1306 # Subcommand specific options such as --branch and --cached are
1307 # parsed here as well, for backward compatibility.
1309 while test $# != 0 && test -z "$command"
1312 add | foreach | init | deinit | update | status | summary | sync)
1342 # No command word defaults to "status"
1343 if test -z "$command"
1353 # "-b branch" is accepted only by "add"
1354 if test -n "$branch" && test "$command" != add
1359 # "--cached" is accepted only by "status" and "summary"
1360 if test -n "$cached" && test "$command" != status -a "$command" != summary