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>...]"
22 wt_prefix
=$
(git rev-parse
--show-prefix)
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
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
71 remoteurl
=${remoteurl%/}
84 remoteurl
="./$remoteurl"
95 remoteurl
="${remoteurl%/*}"
98 remoteurl
="${remoteurl%:*}"
102 if test -z "$is_relative" ||
test "." = "$remoteurl"
104 die
"$(eval_gettext "cannot strip one component off url
'\$remoteurl'")"
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.
130 local target curdir result
132 curdir
=${2-$wt_prefix}
136 while test -n "$curdir"
140 target
=${target#"$curdir"/}
145 result
="${result}../"
146 if test "$curdir" = "${curdir%/*}"
150 curdir
="${curdir%/*}"
154 echo "$result$target"
159 if test "$1" = "#unmatched"
166 # Print a submodule configuration setting
168 # $1 = submodule name
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
() {
182 value
=$
(git config submodule.
"$name".
"$option")
185 value
=$
(git config
-f .gitmodules submodule.
"$name".
"$option")
187 printf '%s' "${value:-$default}"
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
202 GIT_CONFIG_PARAMETERS
=$save_config
203 export GIT_CONFIG_PARAMETERS
207 # Add a new submodule to the working tree, .gitmodules and the index
211 # optional branch is stored in global branch variable
215 # parse $args after "submodule ... add".
221 case "$2" in '') usage
;; esac
232 case "$2" in '') usage
;; esac
237 reference_path
="${1#--reference=}"
240 case "$2" in '') usage
;; esac
245 case "$2" in '') usage
;; esac
266 if test -n "$reference_path"
268 is_absolute_path
"$reference_path" ||
269 reference_path
="$wt_prefix$reference_path"
271 reference
="--reference=$reference_path"
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
286 is_absolute_path
"$sm_path" || sm_path
="$wt_prefix$sm_path"
288 # assure repo is absolute or relative to parent
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
302 die
"$(eval_gettext "repo URL
: '\$repo' must be absolute or begin with .
/|..
/")"
307 # multiple //; leading ./; /./; /../; trailing /
308 sm_path
=$
(printf '%s/\n' "$sm_path" |
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
323 eval_gettextln
"The following path is ignored by one of your .gitignore files:
325 Use -f if you really want to add it." >&2
329 if test -n "$custom_name"
331 sm_name
="$custom_name"
336 # perhaps the path exists and is already a git repo, else clone it
337 if test -e "$sm_path"
339 if test -d "$sm_path"/.git ||
test -f "$sm_path"/.git
341 eval_gettextln
"Adding existing repo at '\$sm_path' to the index"
343 die
"$(eval_gettext "'\$sm_path' already exists and is not a valid git repo
")"
347 if test -d ".git/modules/$sm_name"
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.
")"
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
365 # ash fails to wordsplit ${branch:+-b "$branch"...}
367 '') git checkout
-f -q ;;
368 ?
*) git checkout
-f -q -B "$branch" "origin/$branch" ;;
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" &&
381 git config
-f .gitmodules submodule.
"$sm_name".branch
"$branch"
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
391 # $@ = command to execute
395 # parse $args after "submodule ... foreach".
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)
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
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
434 sm_path
=$
(relative_path
"$sm_path") &&
435 # we make $path available to scripts ...
443 if test -n "$recursive"
445 cmd_foreach
"--recursive" "$@"
448 die
"$(eval_gettext "Stopping
at '\$prefix\$displaypath'; script returned non-zero status.
")"
454 # Register submodules in .git/config
456 # $@ = requested paths (default to all)
460 # parse $args after "submodule ... init".
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
")"
492 url
=$
(git config
-f .gitmodules submodule.
"$name".url
)
494 die
"$(eval_gettext "No url found
for submodule path
'\$displaypath' in .gitmodules
")"
496 # Possibly a url relative to parent
499 url
=$
(resolve_relative_url
"$url") ||
exit
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)" &&
511 test -z "$(git config submodule."$name".update)"
514 checkout | rebase | merge | none
)
515 ;; # known modes of updating
517 echo >&2 "warning: unknown update mode '$upd' suggested for submodule '$name'"
521 git config submodule.
"$name".update
"$upd" ||
522 die
"$(eval_gettext "Failed to register update mode
for submodule path
'\$displaypath'")"
528 # Unregister submodules from .git/config and remove their work tree
530 # $@ = requested paths (use '.' to deinit all submodules)
534 # parse $args after "submodule ... deinit".
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"
574 # Protect submodules containing a .git directory
575 if test -d "$sm_path/.git"
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)")"
583 git
rm -qn "$sm_path" ||
584 die
"$(eval_gettext "Submodule work tree
'\$displaypath' contains
local modifications
; use
'-f' to discard them
")"
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\.
")"
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'")"
605 is_tip_reachable
() (
606 sanitize_submodule_env
&&
608 rev=$
(git rev-list
-n 1 "$2" --not --all 2>/dev
/null
) &&
612 fetch_in_submodule
() (
613 sanitize_submodule_env
&&
619 git fetch $
(get_default_remote
) "$2" ;;
624 # Update each submodule path to correct revision, using clone and checkout as needed
626 # $@ = requested paths (default to all)
630 # parse $args after "submodule ... update".
653 case "$2" in '') usage
;; esac
654 reference
="--reference=$2"
670 case "$2" in '') usage
;; esac
693 cmd_init
"--" "$@" ||
return
697 git submodule--helper list
--prefix "$wt_prefix" "$@" |
{
699 while read mode sha1 stage sm_path
701 die_if_unmatched
"$mode"
704 echo >&2 "Skipping unmerged submodule $prefix$sm_path"
707 name
=$
(git submodule--helper name
"$sm_path") ||
exit
708 url
=$
(git config submodule.
"$name".url
)
709 branch
=$
(get_submodule_config
"$name" branch master
)
710 if ! test -z "$update"
712 update_module
=$update
714 update_module
=$
(git config submodule.
"$name".update
)
715 if test -z "$update_module"
717 update_module
="checkout"
721 displaypath
=$
(relative_path
"$prefix$sm_path")
723 if test "$update_module" = "none"
725 echo "Skipping submodule '$displaypath'"
731 # Only mention uninitialized submodules when its
732 # path have been specified
734 say
"$(eval_gettext "Submodule path
'\$displaypath' not initialized
735 Maybe you want to use
'update --init'?
")"
739 if ! test -d "$sm_path"/.git
&& ! test -f "$sm_path"/.git
741 git submodule--helper clone
${GIT_QUIET:+--quiet} --prefix "$prefix" --path "$sm_path" --name "$name" --url "$url" ${reference:+"$reference"} ${depth:+"$depth"} ||
exit
742 cloned_modules
="$cloned_modules;$name"
745 subsha1
=$
(sanitize_submodule_env
; cd "$sm_path" &&
746 git rev-parse
--verify HEAD
) ||
747 die
"$(eval_gettext "Unable to
find current revision
in submodule path
'\$displaypath'")"
752 if test -z "$nofetch"
754 # Fetch remote before determining tracking $sha1
755 (sanitize_submodule_env
; cd "$sm_path" && git-fetch
) ||
756 die
"$(eval_gettext "Unable to fetch
in submodule path
'\$sm_path'")"
758 remote_name
=$
(sanitize_submodule_env
; cd "$sm_path" && get_default_remote
)
759 sha1
=$
(sanitize_submodule_env
; cd "$sm_path" &&
760 git rev-parse
--verify "${remote_name}/${branch}") ||
761 die
"$(eval_gettext "Unable to
find current
${remote_name}/${branch} revision
in submodule path
'\$sm_path'")"
764 if test "$subsha1" != "$sha1" ||
test -n "$force"
767 # If we don't already have a -f flag and the submodule has never been checked out
768 if test -z "$subsha1" && test -z "$force"
773 if test -z "$nofetch"
775 # Run fetch only if $sha1 isn't present or it
776 # is not reachable from a ref.
777 is_tip_reachable
"$sm_path" "$sha1" ||
778 fetch_in_submodule
"$sm_path" ||
779 die
"$(eval_gettext "Unable to fetch
in submodule path
'\$displaypath'")"
781 # Now we tried the usual fetch, but $sha1 may
782 # not be reachable from any of the refs
783 is_tip_reachable
"$sm_path" "$sha1" ||
784 fetch_in_submodule
"$sm_path" "$sha1" ||
785 die
"$(eval_gettext "Fetched
in submodule path
'\$displaypath', but it did not contain
$sha1. Direct fetching of that commit failed.
")"
788 # Is this something we just cloned?
789 case ";$cloned_modules;" in
791 # then there is no local change to integrate
792 update_module
=checkout
;;
796 case "$update_module" in
798 command="git checkout $subforce -q"
799 die_msg
="$(eval_gettext "Unable to checkout
'\$sha1' in submodule path
'\$displaypath'")"
800 say_msg
="$(eval_gettext "Submodule path
'\$displaypath': checked out
'\$sha1'")"
804 die_msg
="$(eval_gettext "Unable to rebase
'\$sha1' in submodule path
'\$displaypath'")"
805 say_msg
="$(eval_gettext "Submodule path
'\$displaypath': rebased into
'\$sha1'")"
806 must_die_on_failure
=yes
810 die_msg
="$(eval_gettext "Unable to merge
'\$sha1' in submodule path
'\$displaypath'")"
811 say_msg
="$(eval_gettext "Submodule path
'\$displaypath': merged
in '\$sha1'")"
812 must_die_on_failure
=yes
815 command="${update_module#!}"
816 die_msg
="$(eval_gettext "Execution of
'\$command \$sha1' failed
in submodule path
'\$prefix\$sm_path'")"
817 say_msg
="$(eval_gettext "Submodule path
'\$prefix\$sm_path': '\$command \$sha1'")"
818 must_die_on_failure
=yes
821 die
"$(eval_gettext "Invalid update mode
'$update_module' for submodule
'$name'")"
824 if (sanitize_submodule_env
; cd "$sm_path" && $command "$sha1")
827 elif test -n "$must_die_on_failure"
829 die_with_status
2 "$die_msg"
831 err
="${err};$die_msg"
836 if test -n "$recursive"
839 prefix
="$prefix$sm_path/"
840 sanitize_submodule_env
847 die_msg
="$(eval_gettext "Failed to recurse into submodule path
'\$displaypath'")"
850 err
="${err};$die_msg"
853 die_with_status
$res "$die_msg"
878 sanitize_submodule_env
880 git describe
"$2" 2>/dev
/null ||
881 git describe
--tags "$2" 2>/dev
/null ||
882 git describe
--contains "$2" 2>/dev
/null ||
883 git describe
--all --always "$2"
886 test -z "$revname" || revname
=" ($revname)"
889 # Show commit summary for submodules in index or working tree
891 # If '--cached' is given, show summary between index and given commit,
892 # or between working tree and given commit
894 # $@ = [commit (default 'HEAD'),] requested paths (default all)
901 # parse $args after "submodule ... summary".
916 isnumber
"$summary_limit" || usage
920 summary_limit
="${1#--summary-limit=}"
921 isnumber
"$summary_limit" || usage
937 test $summary_limit = 0 && return
939 if rev=$
(git rev-parse
-q --verify --default HEAD
${1+"$1"})
943 elif test -z "$1" ||
test "$1" = "HEAD"
945 # before the first commit: compare with an empty tree
946 head=$
(git hash-object
-w -t tree
--stdin </dev
/null
)
947 test -z "$1" ||
shift
955 die
"$(gettext "The
--cached option cannot be used with the
--files option
")"
961 eval "set $(git rev-parse --sq --prefix "$wt_prefix" -- "$@
")"
962 # Get modified modules cared by user
963 modules
=$
(git
$diff_cmd $cached --ignore-submodules=dirty
--raw $head -- "$@" |
964 sane_egrep
'^:([0-7]* )?160000' |
965 while read mod_src mod_dst sha1_src sha1_dst status sm_path
967 # Always show modules deleted or type-changed (blob<->module)
968 if test "$status" = D ||
test "$status" = T
970 printf '%s\n' "$sm_path"
973 # Respect the ignore setting for --for-status.
974 if test -n "$for_status"
976 name
=$
(git submodule--helper name
"$sm_path")
977 ignore_config
=$
(get_submodule_config
"$name" ignore none
)
978 test $status != A
&& test $ignore_config = all
&& continue
980 # Also show added or modified modules which are checked out
981 GIT_DIR
="$sm_path/.git" git-rev-parse
--git-dir >/dev
/null
2>&1 &&
982 printf '%s\n' "$sm_path"
986 test -z "$modules" && return
988 git
$diff_cmd $cached --ignore-submodules=dirty
--raw $head -- $modules |
989 sane_egrep
'^:([0-7]* )?160000' |
991 while read mod_src mod_dst sha1_src sha1_dst status name
993 if test -z "$cached" &&
994 test $sha1_dst = 0000000000000000000000000000000000000000
998 sha1_dst
=$
(GIT_DIR
="$name/.git" git rev-parse HEAD
)
1000 100644 |
100755 |
120000)
1001 sha1_dst
=$
(git hash-object
$name)
1007 eval_gettextln
"unexpected mode \$mod_dst" >&2
1014 test $mod_src = 160000 &&
1015 ! GIT_DIR
="$name/.git" git-rev-parse
-q --verify $sha1_src^
0 >/dev
/null
&&
1018 test $mod_dst = 160000 &&
1019 ! GIT_DIR
="$name/.git" git-rev-parse
-q --verify $sha1_dst^
0 >/dev
/null
&&
1022 display_name
=$
(relative_path
"$name")
1025 case "$missing_src,$missing_dst" in
1027 errmsg
="$(eval_gettext " Warn
: \
$display_name doesn
't contain commit \$sha1_src")"
1030 errmsg="$(eval_gettext " Warn: \$display_name doesn't contain commit \
$sha1_dst")"
1033 errmsg
="$(eval_gettext " Warn
: \
$display_name doesn
't contain commits \$sha1_src and \$sha1_dst")"
1038 if test $mod_src = 160000 && test $mod_dst = 160000
1040 range="$sha1_src...$sha1_dst"
1041 elif test $mod_src = 160000
1047 GIT_DIR="$name/.git" \
1048 git rev-list --first-parent $range -- | wc -l
1050 total_commits=" ($(($total_commits + 0)))"
1054 sha1_abbr_src=$(echo $sha1_src | cut -c1-7)
1055 sha1_abbr_dst=$(echo $sha1_dst | cut -c1-7)
1058 blob="$(gettext "blob")"
1059 submodule="$(gettext "submodule")"
1060 if test $mod_dst = 160000
1062 echo "* $display_name $sha1_abbr_src($blob)->$sha1_abbr_dst($submodule)$total_commits:"
1064 echo "* $display_name $sha1_abbr_src($submodule)->$sha1_abbr_dst($blob)$total_commits:"
1067 echo "* $display_name $sha1_abbr_src...$sha1_abbr_dst$total_commits:"
1069 if test -n "$errmsg"
1071 # Don't give error msg
for modification whose dst is not submodule
1072 # i.e. deleted or changed to blob
1073 test $mod_dst = 160000 && echo "$errmsg"
1075 if test $mod_src = 160000 && test $mod_dst = 160000
1078 test $summary_limit -gt 0 && limit
="-$summary_limit"
1079 GIT_DIR
="$name/.git" \
1080 git log
$limit --pretty='format: %m %s' \
1081 --first-parent $sha1_src...
$sha1_dst
1082 elif test $mod_dst = 160000
1084 GIT_DIR
="$name/.git" \
1085 git log
--pretty='format: > %s' -1 $sha1_dst
1087 GIT_DIR
="$name/.git" \
1088 git log
--pretty='format: < %s' -1 $sha1_src
1096 # List all submodules, prefixed with:
1097 # - submodule not initialized
1098 # + different revision checked out
1100 # If --cached was specified the revision in the index will be printed
1101 # instead of the currently checked out revision.
1103 # $@ = requested paths (default to all)
1107 # parse $args after "submodule ... status".
1134 git submodule--helper list
--prefix "$wt_prefix" "$@" |
1135 while read mode sha1 stage sm_path
1137 die_if_unmatched
"$mode"
1138 name
=$
(git submodule--helper name
"$sm_path") ||
exit
1139 url
=$
(git config submodule.
"$name".url
)
1140 displaypath
=$
(relative_path
"$prefix$sm_path")
1141 if test "$stage" = U
1143 say
"U$sha1 $displaypath"
1146 if test -z "$url" ||
1148 ! test -d "$sm_path"/.git
&&
1149 ! test -f "$sm_path"/.git
1152 say
"-$sha1 $displaypath"
1155 if git diff-files
--ignore-submodules=dirty
--quiet -- "$sm_path"
1157 set_name_rev
"$sm_path" "$sha1"
1158 say
" $sha1 $displaypath$revname"
1160 if test -z "$cached"
1162 sha1
=$
(sanitize_submodule_env
; cd "$sm_path" && git rev-parse
--verify HEAD
)
1164 set_name_rev
"$sm_path" "$sha1"
1165 say
"+$sha1 $displaypath$revname"
1168 if test -n "$recursive"
1171 prefix
="$displaypath/"
1172 sanitize_submodule_env
1176 die
"$(eval_gettext "Failed to recurse into submodule path
'\$sm_path'")"
1181 # Sync remote urls for submodules
1182 # This makes the value for remote.$remote.url match the value
1183 # specified in .gitmodules.
1211 git submodule--helper list
--prefix "$wt_prefix" "$@" |
1212 while read mode sha1 stage sm_path
1214 die_if_unmatched
"$mode"
1215 name
=$
(git submodule--helper name
"$sm_path")
1216 url
=$
(git config
-f .gitmodules
--get submodule.
"$name".url
)
1218 # Possibly a url relative to parent
1221 # rewrite foo/bar as ../.. to find path from
1222 # submodule work tree to superproject work tree
1223 up_path
="$(printf '%s\n' "$sm_path" | sed "s
/[^
/][^
/]*/..
/g
")" &&
1224 # guarantee a trailing /
1225 up_path
=${up_path%/}/ &&
1226 # path from submodule work tree to submodule origin repo
1227 sub_origin_url
=$
(resolve_relative_url
"$url" "$up_path") &&
1228 # path from superproject work tree to submodule origin repo
1229 super_config_url
=$
(resolve_relative_url
"$url") ||
exit
1232 sub_origin_url
="$url"
1233 super_config_url
="$url"
1237 if git config
"submodule.$name.url" >/dev
/null
2>/dev
/null
1239 displaypath
=$
(relative_path
"$prefix$sm_path")
1240 say
"$(eval_gettext "Synchronizing submodule url
for '\$displaypath'")"
1241 git config submodule.
"$name".url
"$super_config_url"
1243 if test -e "$sm_path"/.git
1246 sanitize_submodule_env
1248 remote
=$
(get_default_remote
)
1249 git config remote.
"$remote".url
"$sub_origin_url"
1251 if test -n "$recursive"
1253 prefix
="$prefix$sm_path/"
1262 # This loop parses the command line arguments to find the
1263 # subcommand name to dispatch. Parsing of the subcommand specific
1264 # options are primarily done by the subcommand implementations.
1265 # Subcommand specific options such as --branch and --cached are
1266 # parsed here as well, for backward compatibility.
1268 while test $# != 0 && test -z "$command"
1271 add | foreach | init | deinit | update | status | summary | sync
)
1301 # No command word defaults to "status"
1302 if test -z "$command"
1312 # "-b branch" is accepted only by "add"
1313 if test -n "$branch" && test "$command" != add
1318 # "--cached" is accepted only by "status" and "summary"
1319 if test -n "$cached" && test "$command" != status
&& test "$command" != summary