blob: 652861aa66a400940c24ea8405177f372009eafe [file] [log] [blame]
Lars Hjemli70c7ac22007-05-26 15:56:40 +02001#!/bin/sh
2#
Michał Górny4c8a9db2012-06-25 12:56:59 +02003# git-submodule.sh: add, init, update or list git submodules
Lars Hjemli70c7ac22007-05-26 15:56:40 +02004#
5# Copyright (c) 2007 Lars Hjemli
6
Johan Herland1d5bec82009-08-19 03:45:19 +02007dashless=$(basename "$0" | sed -e 's/-/ /')
Denton Liu68cabbf2019-02-15 01:26:41 -08008USAGE="[--quiet] [--cached]
9 or: $dashless [--quiet] add [-b <branch>] [-f|--force] [--name <name>] [--reference <repository>] [--] <repository> [<path>]
Johan Herland64b19ff2009-08-19 03:45:24 +020010 or: $dashless [--quiet] status [--cached] [--recursive] [--] [<path>...]
Johan Herland1d5bec82009-08-19 03:45:19 +020011 or: $dashless [--quiet] init [--] [<path>...]
Stefan Bellerf6a52792016-05-05 12:52:32 -070012 or: $dashless [--quiet] deinit [-f|--force] (--all| [--] <path>...)
Emily Shaffer132f6002020-02-20 19:10:27 -080013 or: $dashless [--quiet] update [--init] [--remote] [-N|--no-fetch] [-f|--force] [--checkout|--merge|--rebase] [--[no-]recommend-shallow] [--reference <repository>] [--recursive] [--[no-]single-branch] [--] [<path>...]
Denton Liub57e8112019-02-08 03:21:34 -080014 or: $dashless [--quiet] set-branch (--default|--branch <branch>) [--] <path>
Denton Liu26b06102019-10-29 10:01:52 -070015 or: $dashless [--quiet] set-url [--] <path> <newurl>
Junio C Hamanoadc54232009-08-27 16:59:25 -070016 or: $dashless [--quiet] summary [--cached|--files] [--summary-limit <n>] [commit] [--] [<path>...]
Johan Herland15fc56a2009-08-19 03:45:22 +020017 or: $dashless [--quiet] foreach [--recursive] <command>
Stefan Bellerc32eaa82017-01-11 12:59:17 -080018 or: $dashless [--quiet] sync [--recursive] [--] [<path>...]
19 or: $dashless [--quiet] absorbgitdirs [--] [<path>...]"
Junio C Hamano8f321a32007-11-06 01:50:02 -080020OPTIONS_SPEC=
John Keeping091a6eb2013-06-16 15:18:18 +010021SUBDIRECTORY_OK=Yes
Lars Hjemli70c7ac22007-05-26 15:56:40 +020022. git-sh-setup
23require_work_tree
John Keeping091a6eb2013-06-16 15:18:18 +010024wt_prefix=$(git rev-parse --show-prefix)
25cd_to_toplevel
Lars Hjemli70c7ac22007-05-26 15:56:40 +020026
Brandon Williamsf1762d72016-12-14 14:39:52 -080027# Tell the rest of git that any URLs we get don't come
28# directly from the user, so it can apply policy as appropriate.
29GIT_PROTOCOL_FROM_USER=0
30export GIT_PROTOCOL_FROM_USER
Jeff King33cfccb2015-09-16 13:13:12 -040031
Junio C Hamano5c08dbb2008-01-15 02:48:45 -080032command=
Sven Verdoolaegeecda0722007-06-24 23:06:07 +020033branch=
Jens Lehmannd27b8762010-07-17 17:11:43 +020034force=
Michael S. Tsirkind92a3952009-05-04 22:30:01 +030035reference=
Lars Hjemli70c7ac22007-05-26 15:56:40 +020036cached=
Gerrit Pape48bb3032010-04-26 11:50:39 +020037recursive=
38init=
Johannes Schindelin0060fd12019-09-12 14:20:39 +020039require_init=
Jens Lehmann1c244f62009-08-13 21:32:50 +020040files=
W. Trevor King06b1abb2012-12-19 11:03:32 -050041remote=
Fabian Franz31ca3ac2009-02-05 20:18:32 -020042nofetch=
Johan Herland32948422009-06-03 08:27:06 +020043update=
Johan Herland15fc56a2009-08-19 03:45:22 +020044prefix=
Jens Lehmann73b08982012-09-30 01:05:58 +020045custom_name=
Fredrik Gustafsson275cd182013-07-02 23:42:56 +020046depth=
Jeff King72c5f882016-09-22 01:24:46 -040047progress=
Casey Fitzpatricka0ef2932018-05-03 06:53:46 -040048dissociate=
Emily Shaffer132f6002020-02-20 19:10:27 -080049single_branch=
Li Xuejiang65d100c2020-04-02 16:42:51 +080050jobs=
51recommend_shallow=
Lars Hjemli70c7ac22007-05-26 15:56:40 +020052
Heiko Voigtbe9d0a32012-08-14 22:35:27 +020053die_if_unmatched ()
54{
55 if test "$1" = "#unmatched"
56 then
Johannes Sixtc4c02bf2016-07-22 21:14:38 +020057 exit ${2:-1}
Heiko Voigtbe9d0a32012-08-14 22:35:27 +020058 fi
59}
60
René Scharfe862ae6c2013-04-01 15:06:27 +020061isnumber()
62{
63 n=$(($1 + 0)) 2>/dev/null && test "$n" = "$1"
64}
65
Jacob Keller14111fc2016-02-29 14:58:35 -080066# Sanitize the local git environment for use within a submodule. We
67# can't simply use clear_local_git_env since we want to preserve some
68# of the settings from GIT_CONFIG_PARAMETERS.
69sanitize_submodule_env()
70{
Jeff King89044ba2016-05-04 21:22:19 -040071 save_config=$GIT_CONFIG_PARAMETERS
Jacob Keller14111fc2016-02-29 14:58:35 -080072 clear_local_git_env
Jeff King89044ba2016-05-04 21:22:19 -040073 GIT_CONFIG_PARAMETERS=$save_config
Jeff King860cba62016-04-28 09:37:44 -040074 export GIT_CONFIG_PARAMETERS
Jacob Keller14111fc2016-02-29 14:58:35 -080075}
76
Lars Hjemli70c7ac22007-05-26 15:56:40 +020077#
Sven Verdoolaegeecda0722007-06-24 23:06:07 +020078# Add a new submodule to the working tree, .gitmodules and the index
79#
Mark Levedahlec05df32008-07-09 21:05:40 -040080# $@ = repo path
Sven Verdoolaegeecda0722007-06-24 23:06:07 +020081#
82# optional branch is stored in global branch variable
83#
Junio C Hamano23a485e2008-01-15 02:35:49 -080084cmd_add()
Sven Verdoolaegeecda0722007-06-24 23:06:07 +020085{
Junio C Hamano5c08dbb2008-01-15 02:48:45 -080086 # parse $args after "submodule ... add".
John Keeping091a6eb2013-06-16 15:18:18 +010087 reference_path=
Junio C Hamano5c08dbb2008-01-15 02:48:45 -080088 while test $# -ne 0
89 do
90 case "$1" in
91 -b | --branch)
92 case "$2" in '') usage ;; esac
93 branch=$2
94 shift
95 ;;
Jens Lehmannd27b8762010-07-17 17:11:43 +020096 -f | --force)
97 force=$1
98 ;;
Junio C Hamano5c08dbb2008-01-15 02:48:45 -080099 -q|--quiet)
Stephen Boyd2e6a30e2009-06-16 15:33:00 -0700100 GIT_QUIET=1
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800101 ;;
Casey Fitzpatrick6d33e1c2018-05-03 06:53:45 -0400102 --progress)
103 progress=1
104 ;;
Michael S. Tsirkind92a3952009-05-04 22:30:01 +0300105 --reference)
106 case "$2" in '') usage ;; esac
John Keeping091a6eb2013-06-16 15:18:18 +0100107 reference_path=$2
Michael S. Tsirkind92a3952009-05-04 22:30:01 +0300108 shift
109 ;;
110 --reference=*)
John Keeping091a6eb2013-06-16 15:18:18 +0100111 reference_path="${1#--reference=}"
Michael S. Tsirkind92a3952009-05-04 22:30:01 +0300112 ;;
Casey Fitzpatricka0ef2932018-05-03 06:53:46 -0400113 --dissociate)
114 dissociate=1
115 ;;
Jens Lehmann73b08982012-09-30 01:05:58 +0200116 --name)
117 case "$2" in '') usage ;; esac
118 custom_name=$2
119 shift
120 ;;
Fredrik Gustafsson275cd182013-07-02 23:42:56 +0200121 --depth)
122 case "$2" in '') usage ;; esac
123 depth="--depth=$2"
124 shift
125 ;;
126 --depth=*)
127 depth=$1
128 ;;
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800129 --)
130 shift
131 break
132 ;;
133 -*)
134 usage
135 ;;
136 *)
137 break
138 ;;
139 esac
140 shift
141 done
142
Atharva Raykara6226fd2021-08-10 17:16:37 +0530143 if test -z "$1"
Antonio Ospite76e9bdc2018-10-25 18:18:12 +0200144 then
Sven Verdoolaegeecda0722007-06-24 23:06:07 +0200145 usage
146 fi
147
Atharva Raykara6226fd2021-08-10 17:16:37 +0530148 git ${wt_prefix:+-C "$wt_prefix"} ${prefix:+--super-prefix "$prefix"} submodule--helper add ${GIT_QUIET:+--quiet} ${force:+--force} ${progress:+"--progress"} ${branch:+--branch "$branch"} ${reference_path:+--reference "$reference_path"} ${dissociate:+--dissociate} ${custom_name:+--name "$custom_name"} ${depth:+"$depth"} -- "$@"
Sven Verdoolaegeecda0722007-06-24 23:06:07 +0200149}
150
151#
Mark Levedahl19a31f92008-08-10 19:10:04 -0400152# Execute an arbitrary command sequence in each checked out
153# submodule
154#
155# $@ = command to execute
156#
157cmd_foreach()
158{
Johan Herland1d5bec82009-08-19 03:45:19 +0200159 # parse $args after "submodule ... foreach".
160 while test $# -ne 0
161 do
162 case "$1" in
163 -q|--quiet)
164 GIT_QUIET=1
165 ;;
Johan Herland15fc56a2009-08-19 03:45:22 +0200166 --recursive)
167 recursive=1
168 ;;
Johan Herland1d5bec82009-08-19 03:45:19 +0200169 -*)
170 usage
171 ;;
172 *)
173 break
174 ;;
175 esac
176 shift
177 done
178
Kaartic Sivaraam1cf823d2021-06-22 23:44:52 +0530179 git ${wt_prefix:+-C "$wt_prefix"} submodule--helper foreach ${GIT_QUIET:+--quiet} ${recursive:+--recursive} -- "$@"
Mark Levedahl19a31f92008-08-10 19:10:04 -0400180}
181
182#
Lars Hjemli211b7f12007-06-06 11:13:02 +0200183# Register submodules in .git/config
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200184#
185# $@ = requested paths (default to all)
186#
Junio C Hamano23a485e2008-01-15 02:35:49 -0800187cmd_init()
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200188{
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800189 # parse $args after "submodule ... init".
190 while test $# -ne 0
191 do
192 case "$1" in
193 -q|--quiet)
Stephen Boyd2e6a30e2009-06-16 15:33:00 -0700194 GIT_QUIET=1
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800195 ;;
196 --)
197 shift
198 break
199 ;;
200 -*)
201 usage
202 ;;
203 *)
204 break
205 ;;
206 esac
207 shift
208 done
209
Nguyễn Thái Ngọc Duya282f5a2019-04-12 17:08:19 +0700210 git ${wt_prefix:+-C "$wt_prefix"} ${prefix:+--super-prefix "$prefix"} submodule--helper init ${GIT_QUIET:+--quiet} -- "$@"
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200211}
212
213#
Jens Lehmanncf419822013-03-04 22:20:24 +0100214# Unregister submodules from .git/config and remove their work tree
215#
Jens Lehmanncf419822013-03-04 22:20:24 +0100216cmd_deinit()
217{
218 # parse $args after "submodule ... deinit".
Stefan Bellerf6a52792016-05-05 12:52:32 -0700219 deinit_all=
Jens Lehmanncf419822013-03-04 22:20:24 +0100220 while test $# -ne 0
221 do
222 case "$1" in
223 -f|--force)
224 force=$1
225 ;;
226 -q|--quiet)
227 GIT_QUIET=1
228 ;;
Stefan Bellerf6a52792016-05-05 12:52:32 -0700229 --all)
230 deinit_all=t
231 ;;
Jens Lehmanncf419822013-03-04 22:20:24 +0100232 --)
233 shift
234 break
235 ;;
236 -*)
237 usage
238 ;;
239 *)
240 break
241 ;;
242 esac
243 shift
244 done
245
Kaartic Sivaraam1cf823d2021-06-22 23:44:52 +0530246 git ${wt_prefix:+-C "$wt_prefix"} submodule--helper deinit ${GIT_QUIET:+--quiet} ${force:+--force} ${deinit_all:+--all} -- "$@"
Jens Lehmanncf419822013-03-04 22:20:24 +0100247}
248
Jeff King66d36b92020-11-24 04:06:05 -0500249# usage: fetch_in_submodule <module_path> [<depth>] [<sha1>]
250# Because arguments are positional, use an empty string to omit <depth>
251# but include <sha1>.
Stefan Bellerfb43e312016-02-23 19:32:13 -0800252fetch_in_submodule () (
Junio C Hamano01e1d542016-04-06 11:39:12 -0700253 sanitize_submodule_env &&
Stefan Bellerfb43e312016-02-23 19:32:13 -0800254 cd "$1" &&
Ævar Arnfjörð Bjarmason1c151802020-11-14 13:21:30 +0100255 if test $# -eq 3
256 then
Nicholas Clark62af4bd2021-04-30 09:59:06 +0000257 echo "$3" | git fetch ${GIT_QUIET:+--quiet} --stdin ${2:+"$2"}
Ævar Arnfjörð Bjarmason1c151802020-11-14 13:21:30 +0100258 else
Nicholas Clark62af4bd2021-04-30 09:59:06 +0000259 git fetch ${GIT_QUIET:+--quiet} ${2:+"$2"}
Ævar Arnfjörð Bjarmason1c151802020-11-14 13:21:30 +0100260 fi
Stefan Bellerfb43e312016-02-23 19:32:13 -0800261)
262
Jens Lehmanncf419822013-03-04 22:20:24 +0100263#
Lars Hjemli211b7f12007-06-06 11:13:02 +0200264# Update each submodule path to correct revision, using clone and checkout as needed
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200265#
266# $@ = requested paths (default to all)
267#
Junio C Hamano23a485e2008-01-15 02:35:49 -0800268cmd_update()
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200269{
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800270 # parse $args after "submodule ... update".
271 while test $# -ne 0
272 do
273 case "$1" in
274 -q|--quiet)
Stephen Boyd2e6a30e2009-06-16 15:33:00 -0700275 GIT_QUIET=1
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800276 ;;
Stefan Bellere84c3cf2018-08-14 11:22:02 -0700277 -v)
Theodore Dubois3ad04012020-09-30 12:50:53 -0700278 unset GIT_QUIET
Stefan Bellere84c3cf2018-08-14 11:22:02 -0700279 ;;
Jeff King72c5f882016-09-22 01:24:46 -0400280 --progress)
Casey Fitzpatrickc7199e32018-05-03 06:53:44 -0400281 progress=1
Jeff King72c5f882016-09-22 01:24:46 -0400282 ;;
Johannes Schindelinbe4d2c82008-05-16 11:23:03 +0100283 -i|--init)
Michael S. Tsirkind92a3952009-05-04 22:30:01 +0300284 init=1
Johannes Schindelinbe4d2c82008-05-16 11:23:03 +0100285 ;;
Johannes Schindelin0060fd12019-09-12 14:20:39 +0200286 --require-init)
287 init=1
288 require_init=1
289 ;;
W. Trevor King06b1abb2012-12-19 11:03:32 -0500290 --remote)
291 remote=1
292 ;;
Fabian Franz31ca3ac2009-02-05 20:18:32 -0200293 -N|--no-fetch)
Fabian Franz31ca3ac2009-02-05 20:18:32 -0200294 nofetch=1
295 ;;
Nicolas Morey-Chaisemartin9db31bd2011-04-01 11:42:03 +0200296 -f|--force)
297 force=$1
298 ;;
Peter Huttererca2cedb2009-04-24 09:06:38 +1000299 -r|--rebase)
Johan Herland32948422009-06-03 08:27:06 +0200300 update="rebase"
Peter Huttererca2cedb2009-04-24 09:06:38 +1000301 ;;
Michael S. Tsirkind92a3952009-05-04 22:30:01 +0300302 --reference)
303 case "$2" in '') usage ;; esac
304 reference="--reference=$2"
Kevin Ballard98dbe632010-11-02 23:26:25 -0700305 shift
Michael S. Tsirkind92a3952009-05-04 22:30:01 +0300306 ;;
307 --reference=*)
308 reference="$1"
Michael S. Tsirkind92a3952009-05-04 22:30:01 +0300309 ;;
Casey Fitzpatricka0ef2932018-05-03 06:53:46 -0400310 --dissociate)
311 dissociate=1
312 ;;
Johan Herland42b49172009-06-03 00:59:12 +0200313 -m|--merge)
Johan Herland42b49172009-06-03 00:59:12 +0200314 update="merge"
315 ;;
Johan Herlandb13fd5c2009-08-19 03:45:23 +0200316 --recursive)
Johan Herlandb13fd5c2009-08-19 03:45:23 +0200317 recursive=1
318 ;;
Junio C Hamanoefc5fb62011-10-10 15:56:16 -0700319 --checkout)
320 update="checkout"
321 ;;
Stefan Bellerabed0002016-05-26 14:59:43 -0700322 --recommend-shallow)
323 recommend_shallow="--recommend-shallow"
324 ;;
325 --no-recommend-shallow)
326 recommend_shallow="--no-recommend-shallow"
327 ;;
Fredrik Gustafsson275cd182013-07-02 23:42:56 +0200328 --depth)
329 case "$2" in '') usage ;; esac
330 depth="--depth=$2"
331 shift
332 ;;
333 --depth=*)
334 depth=$1
335 ;;
Stefan Beller2335b872016-02-29 18:07:19 -0800336 -j|--jobs)
337 case "$2" in '') usage ;; esac
338 jobs="--jobs=$2"
339 shift
340 ;;
341 --jobs=*)
342 jobs=$1
343 ;;
Emily Shaffer132f6002020-02-20 19:10:27 -0800344 --single-branch)
345 single_branch="--single-branch"
346 ;;
347 --no-single-branch)
348 single_branch="--no-single-branch"
349 ;;
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800350 --)
351 shift
352 break
353 ;;
354 -*)
355 usage
356 ;;
357 *)
358 break
359 ;;
360 esac
Kevin Ballard98dbe632010-11-02 23:26:25 -0700361 shift
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800362 done
363
Michael S. Tsirkind92a3952009-05-04 22:30:01 +0300364 if test -n "$init"
365 then
366 cmd_init "--" "$@" || return
367 fi
368
Stefan Beller48308682016-02-29 18:07:17 -0800369 {
370 git submodule--helper update-clone ${GIT_QUIET:+--quiet} \
Casey Fitzpatrickc7199e32018-05-03 06:53:44 -0400371 ${progress:+"--progress"} \
Stefan Beller48308682016-02-29 18:07:17 -0800372 ${wt_prefix:+--prefix "$wt_prefix"} \
373 ${prefix:+--recursive-prefix "$prefix"} \
374 ${update:+--update "$update"} \
Stefan Beller5f50f332016-08-11 16:14:01 -0700375 ${reference:+"$reference"} \
Casey Fitzpatricka0ef2932018-05-03 06:53:46 -0400376 ${dissociate:+"--dissociate"} \
Stefan Beller48308682016-02-29 18:07:17 -0800377 ${depth:+--depth "$depth"} \
Johannes Schindelin0060fd12019-09-12 14:20:39 +0200378 ${require_init:+--require-init} \
Emily Shaffer132f6002020-02-20 19:10:27 -0800379 $single_branch \
Casey Fitzpatrickc7199e32018-05-03 06:53:44 -0400380 $recommend_shallow \
381 $jobs \
Nguyễn Thái Ngọc Duya282f5a2019-04-12 17:08:19 +0700382 -- \
Johannes Sixtc4c02bf2016-07-22 21:14:38 +0200383 "$@" || echo "#unmatched" $?
Stefan Beller48308682016-02-29 18:07:17 -0800384 } | {
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200385 err=
Stefan Beller9eca7012018-08-03 15:23:17 -0700386 while read -r quickabort sha1 just_cloned sm_path
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200387 do
Stefan Beller9eca7012018-08-03 15:23:17 -0700388 die_if_unmatched "$quickabort" "$sha1"
Stefan Beller48308682016-02-29 18:07:17 -0800389
Stefan Beller5d124f42019-01-18 13:55:19 -0800390 git submodule--helper ensure-core-worktree "$sm_path" || exit 1
Stefan Beller74d47312018-08-13 15:42:34 -0700391
Stefan Beller44431df2016-05-31 17:27:59 -0700392 displaypath=$(git submodule--helper relative-path "$prefix$sm_path" "$wt_prefix")
John Keeping091a6eb2013-06-16 15:18:18 +0100393
Stefan Beller48308682016-02-29 18:07:17 -0800394 if test $just_cloned -eq 1
Junio C Hamanod851ffb2014-04-02 14:15:36 -0700395 then
Lars Hjemlibf2d8242007-06-11 21:12:22 +0200396 subsha1=
397 else
Atharva Raykarc51f8f92021-08-24 19:36:09 +0530398 just_cloned=
Jacob Keller14111fc2016-02-29 14:58:35 -0800399 subsha1=$(sanitize_submodule_env; cd "$sm_path" &&
Junio C Hamano5be60072007-07-02 22:52:14 -0700400 git rev-parse --verify HEAD) ||
Atharva Raykar0008d122021-07-10 13:17:59 +0530401 die "fatal: $(eval_gettext "Unable to find current revision in submodule path '\$displaypath'")"
Lars Hjemli211b7f12007-06-06 11:13:02 +0200402 fi
403
W. Trevor King06b1abb2012-12-19 11:03:32 -0500404 if test -n "$remote"
405 then
Stefan Beller92bbe7c2016-08-03 13:44:03 -0700406 branch=$(git submodule--helper remote-branch "$sm_path")
W. Trevor King06b1abb2012-12-19 11:03:32 -0500407 if test -z "$nofetch"
408 then
409 # Fetch remote before determining tracking $sha1
Stefan Beller6cbf4542016-07-28 17:44:04 -0700410 fetch_in_submodule "$sm_path" $depth ||
Atharva Raykar0008d122021-07-10 13:17:59 +0530411 die "fatal: $(eval_gettext "Unable to fetch in submodule path '\$sm_path'")"
W. Trevor King06b1abb2012-12-19 11:03:32 -0500412 fi
Ævar Arnfjörð Bjarmasone63f7b02020-11-14 13:21:31 +0100413 remote_name=$(sanitize_submodule_env; cd "$sm_path" && git submodule--helper print-default-remote)
Jacob Keller14111fc2016-02-29 14:58:35 -0800414 sha1=$(sanitize_submodule_env; cd "$sm_path" &&
W. Trevor King06b1abb2012-12-19 11:03:32 -0500415 git rev-parse --verify "${remote_name}/${branch}") ||
Atharva Raykar0008d122021-07-10 13:17:59 +0530416 die "fatal: $(eval_gettext "Unable to find current \${remote_name}/\${branch} revision in submodule path '\$sm_path'")"
W. Trevor King06b1abb2012-12-19 11:03:32 -0500417 fi
418
Atharva Raykarc51f8f92021-08-24 19:36:09 +0530419 out=$(git submodule--helper run-update-procedure \
420 ${wt_prefix:+--prefix "$wt_prefix"} \
421 ${GIT_QUIET:+--quiet} \
422 ${force:+--force} \
423 ${just_cloned:+--just-cloned} \
424 ${nofetch:+--no-fetch} \
425 ${depth:+"$depth"} \
426 ${update:+--update "$update"} \
427 ${prefix:+--recursive-prefix "$prefix"} \
428 ${sha1:+--oid "$sha1"} \
429 ${subsha1:+--suboid "$subsha1"} \
430 "--" \
431 "$sm_path")
Fabian Franz31ca3ac2009-02-05 20:18:32 -0200432
Atharva Raykarc51f8f92021-08-24 19:36:09 +0530433 # exit codes for run-update-procedure:
434 # 0: update was successful, say command output
435 # 1: update procedure failed, but should not die
436 # 2 or 128: subcommand died during execution
437 # 3: no update procedure was run
438 res="$?"
439 case $res in
440 0)
441 say "$out"
442 ;;
443 1)
444 err="${err};fatal: $out"
445 continue
446 ;;
447 2|128)
448 die_with_status $res "fatal: $out"
449 ;;
450 esac
Johan Herlandb13fd5c2009-08-19 03:45:23 +0200451
452 if test -n "$recursive"
453 then
William Entriken75bf5e62013-03-02 14:44:59 -0500454 (
Stefan Beller44431df2016-05-31 17:27:59 -0700455 prefix=$(git submodule--helper relative-path "$prefix$sm_path/" "$wt_prefix")
Stefan Beller36042422016-04-15 17:50:13 -0700456 wt_prefix=
Jacob Keller14111fc2016-02-29 14:58:35 -0800457 sanitize_submodule_env
William Entriken75bf5e62013-03-02 14:44:59 -0500458 cd "$sm_path" &&
Jens Lehmann36141282013-11-11 21:55:52 +0100459 eval cmd_update
William Entriken75bf5e62013-03-02 14:44:59 -0500460 )
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200461 res=$?
462 if test $res -gt 0
463 then
Atharva Raykar0008d122021-07-10 13:17:59 +0530464 die_msg="fatal: $(eval_gettext "Failed to recurse into submodule path '\$displaypath'")"
Stefan Bellerbb9d91b2016-06-09 12:06:37 -0700465 if test $res -ne 2
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200466 then
Junio C Hamanoff968f02011-07-13 14:31:35 -0700467 err="${err};$die_msg"
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200468 continue
469 else
Junio C Hamanoff968f02011-07-13 14:31:35 -0700470 die_with_status $res "$die_msg"
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200471 fi
472 fi
Johan Herlandb13fd5c2009-08-19 03:45:23 +0200473 fi
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200474 done
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200475
476 if test -n "$err"
477 then
478 OIFS=$IFS
479 IFS=';'
480 for e in $err
481 do
482 if test -n "$e"
483 then
484 echo >&2 "$e"
485 fi
486 done
487 IFS=$OIFS
488 exit 1
489 fi
490 }
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200491}
492
Ping Yin28f9af52008-03-11 21:52:15 +0800493#
Denton Liub57e8112019-02-08 03:21:34 -0800494# Configures a submodule's default branch
495#
496# $@ = requested path
497#
498cmd_set_branch() {
Shourya Shukla2964d6e2020-06-02 22:05:23 +0530499 default=
Denton Liub57e8112019-02-08 03:21:34 -0800500 branch=
501
502 while test $# -ne 0
503 do
504 case "$1" in
505 -q|--quiet)
506 # we don't do anything with this but we need to accept it
507 ;;
508 -d|--default)
Shourya Shukla2964d6e2020-06-02 22:05:23 +0530509 default=1
Denton Liub57e8112019-02-08 03:21:34 -0800510 ;;
511 -b|--branch)
512 case "$2" in '') usage ;; esac
513 branch=$2
514 shift
515 ;;
516 --)
517 shift
518 break
519 ;;
520 -*)
521 usage
522 ;;
523 *)
524 break
525 ;;
526 esac
527 shift
528 done
529
Kaartic Sivaraam1cf823d2021-06-22 23:44:52 +0530530 git ${wt_prefix:+-C "$wt_prefix"} submodule--helper set-branch ${GIT_QUIET:+--quiet} ${branch:+--branch "$branch"} ${default:+--default} -- "$@"
Denton Liub57e8112019-02-08 03:21:34 -0800531}
532
533#
Denton Liu26b06102019-10-29 10:01:52 -0700534# Configures a submodule's remote url
535#
536# $@ = requested path, requested url
537#
538cmd_set_url() {
539 while test $# -ne 0
540 do
541 case "$1" in
542 -q|--quiet)
543 GIT_QUIET=1
544 ;;
545 --)
546 shift
547 break
548 ;;
549 -*)
550 usage
551 ;;
552 *)
553 break
554 ;;
555 esac
556 shift
557 done
558
Kaartic Sivaraam1cf823d2021-06-22 23:44:52 +0530559 git ${wt_prefix:+-C "$wt_prefix"} submodule--helper set-url ${GIT_QUIET:+--quiet} -- "$@"
Denton Liu26b06102019-10-29 10:01:52 -0700560}
561
562#
Ping Yin28f9af52008-03-11 21:52:15 +0800563# Show commit summary for submodules in index or working tree
564#
565# If '--cached' is given, show summary between index and given commit,
566# or between working tree and given commit
567#
568# $@ = [commit (default 'HEAD'),] requested paths (default all)
569#
570cmd_summary() {
Ping Yinf2dc06a2008-03-11 21:52:17 +0800571 summary_limit=-1
Ping Yind0f64dd2008-04-12 23:05:31 +0800572 for_status=
Jens Lehmann1c244f62009-08-13 21:32:50 +0200573 diff_cmd=diff-index
Emil Medvebffe71f2007-06-26 18:40:58 -0500574
Ping Yin28f9af52008-03-11 21:52:15 +0800575 # parse $args after "submodule ... summary".
576 while test $# -ne 0
577 do
578 case "$1" in
579 --cached)
580 cached="$1"
581 ;;
Jens Lehmann1c244f62009-08-13 21:32:50 +0200582 --files)
583 files="$1"
584 ;;
Ping Yind0f64dd2008-04-12 23:05:31 +0800585 --for-status)
586 for_status="$1"
587 ;;
Ping Yinf2dc06a2008-03-11 21:52:17 +0800588 -n|--summary-limit)
René Scharfe862ae6c2013-04-01 15:06:27 +0200589 summary_limit="$2"
590 isnumber "$summary_limit" || usage
Ping Yinf2dc06a2008-03-11 21:52:17 +0800591 shift
592 ;;
René Scharfe862ae6c2013-04-01 15:06:27 +0200593 --summary-limit=*)
594 summary_limit="${1#--summary-limit=}"
595 isnumber "$summary_limit" || usage
596 ;;
Ping Yin28f9af52008-03-11 21:52:15 +0800597 --)
598 shift
599 break
600 ;;
601 -*)
602 usage
603 ;;
604 *)
605 break
606 ;;
607 esac
608 shift
609 done
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200610
Kaartic Sivaraam1cf823d2021-06-22 23:44:52 +0530611 git ${wt_prefix:+-C "$wt_prefix"} submodule--helper summary ${files:+--files} ${cached:+--cached} ${for_status:+--for-status} ${summary_limit:+-n $summary_limit} -- "$@"
Ping Yin28f9af52008-03-11 21:52:15 +0800612}
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200613#
Lars Hjemli941987a2007-06-11 21:12:24 +0200614# List all submodules, prefixed with:
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200615# - submodule not initialized
616# + different revision checked out
617#
618# If --cached was specified the revision in the index will be printed
619# instead of the currently checked out revision.
620#
621# $@ = requested paths (default to all)
622#
Junio C Hamano23a485e2008-01-15 02:35:49 -0800623cmd_status()
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200624{
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800625 # parse $args after "submodule ... status".
626 while test $# -ne 0
627 do
628 case "$1" in
629 -q|--quiet)
Stephen Boyd2e6a30e2009-06-16 15:33:00 -0700630 GIT_QUIET=1
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800631 ;;
632 --cached)
633 cached=1
634 ;;
Johan Herland64b19ff2009-08-19 03:45:24 +0200635 --recursive)
636 recursive=1
637 ;;
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800638 --)
639 shift
640 break
641 ;;
642 -*)
643 usage
644 ;;
645 *)
646 break
647 ;;
648 esac
649 shift
650 done
651
Kaartic Sivaraam1cf823d2021-06-22 23:44:52 +0530652 git ${wt_prefix:+-C "$wt_prefix"} submodule--helper status ${GIT_QUIET:+--quiet} ${cached:+--cached} ${recursive:+--recursive} -- "$@"
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200653}
David Aguilar2327f612008-08-24 12:43:37 -0700654#
655# Sync remote urls for submodules
656# This makes the value for remote.$remote.url match the value
657# specified in .gitmodules.
658#
659cmd_sync()
660{
661 while test $# -ne 0
662 do
663 case "$1" in
664 -q|--quiet)
Stephen Boyd2e6a30e2009-06-16 15:33:00 -0700665 GIT_QUIET=1
David Aguilar2327f612008-08-24 12:43:37 -0700666 shift
667 ;;
Phil Hord82f49f22012-10-26 15:44:42 -0400668 --recursive)
669 recursive=1
670 shift
671 ;;
David Aguilar2327f612008-08-24 12:43:37 -0700672 --)
673 shift
674 break
675 ;;
676 -*)
677 usage
678 ;;
679 *)
680 break
681 ;;
682 esac
683 done
Brandon Williamse7849a92017-03-16 15:29:45 -0700684
Kaartic Sivaraam1cf823d2021-06-22 23:44:52 +0530685 git ${wt_prefix:+-C "$wt_prefix"} submodule--helper sync ${GIT_QUIET:+--quiet} ${recursive:+--recursive} -- "$@"
David Aguilar2327f612008-08-24 12:43:37 -0700686}
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200687
Stefan Bellerf6f85862016-12-12 11:04:35 -0800688cmd_absorbgitdirs()
689{
690 git submodule--helper absorb-git-dirs --prefix "$wt_prefix" "$@"
691}
692
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800693# This loop parses the command line arguments to find the
694# subcommand name to dispatch. Parsing of the subcommand specific
695# options are primarily done by the subcommand implementations.
696# Subcommand specific options such as --branch and --cached are
697# parsed here as well, for backward compatibility.
698
699while test $# != 0 && test -z "$command"
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200700do
701 case "$1" in
Denton Liu26b06102019-10-29 10:01:52 -0700702 add | foreach | init | deinit | update | set-branch | set-url | status | summary | sync | absorbgitdirs)
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800703 command=$1
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200704 ;;
705 -q|--quiet)
Stephen Boyd2e6a30e2009-06-16 15:33:00 -0700706 GIT_QUIET=1
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200707 ;;
Sven Verdoolaegeecda0722007-06-24 23:06:07 +0200708 -b|--branch)
709 case "$2" in
710 '')
711 usage
712 ;;
713 esac
714 branch="$2"; shift
715 ;;
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200716 --cached)
Ping Yin28f9af52008-03-11 21:52:15 +0800717 cached="$1"
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200718 ;;
719 --)
720 break
721 ;;
722 -*)
723 usage
724 ;;
725 *)
726 break
727 ;;
728 esac
729 shift
730done
731
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800732# No command word defaults to "status"
Ramkumar Ramachandraaf9c9f92012-09-22 16:57:59 +0530733if test -z "$command"
734then
735 if test $# = 0
736 then
737 command=status
738 else
739 usage
740 fi
741fi
Sven Verdoolaegeecda0722007-06-24 23:06:07 +0200742
Denton Liub57e8112019-02-08 03:21:34 -0800743# "-b branch" is accepted only by "add" and "set-branch"
744if test -n "$branch" && (test "$command" != add || test "$command" != set-branch)
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800745then
Lars Hjemli70c7ac22007-05-26 15:56:40 +0200746 usage
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800747fi
748
Ping Yin28f9af52008-03-11 21:52:15 +0800749# "--cached" is accepted only by "status" and "summary"
Elia Pinto496eeeb2014-06-10 05:28:33 -0700750if test -n "$cached" && test "$command" != status && test "$command" != summary
Junio C Hamano5c08dbb2008-01-15 02:48:45 -0800751then
752 usage
753fi
754
Denton Liub57e8112019-02-08 03:21:34 -0800755"cmd_$(echo $command | sed -e s/-/_/g)" "$@"