Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 3 | # git-submodules.sh: add, init, update or list git submodules |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 4 | # |
| 5 | # Copyright (c) 2007 Lars Hjemli |
| 6 | |
Johan Herland | 1d5bec8 | 2009-08-19 03:45:19 +0200 | [diff] [blame] | 7 | dashless=$(basename "$0" | sed -e 's/-/ /') |
Jens Lehmann | d27b876 | 2010-07-17 17:11:43 +0200 | [diff] [blame] | 8 | USAGE="[--quiet] add [-b branch] [-f|--force] [--reference <repository>] [--] <repository> [<path>] |
Johan Herland | 64b19ff | 2009-08-19 03:45:24 +0200 | [diff] [blame] | 9 | or: $dashless [--quiet] status [--cached] [--recursive] [--] [<path>...] |
Johan Herland | 1d5bec8 | 2009-08-19 03:45:19 +0200 | [diff] [blame] | 10 | or: $dashless [--quiet] init [--] [<path>...] |
Johan Herland | b13fd5c | 2009-08-19 03:45:23 +0200 | [diff] [blame] | 11 | or: $dashless [--quiet] update [--init] [-N|--no-fetch] [--rebase] [--reference <repository>] [--merge] [--recursive] [--] [<path>...] |
Junio C Hamano | adc5423 | 2009-08-27 16:59:25 -0700 | [diff] [blame] | 12 | or: $dashless [--quiet] summary [--cached|--files] [--summary-limit <n>] [commit] [--] [<path>...] |
Johan Herland | 15fc56a | 2009-08-19 03:45:22 +0200 | [diff] [blame] | 13 | or: $dashless [--quiet] foreach [--recursive] <command> |
Johan Herland | 1d5bec8 | 2009-08-19 03:45:19 +0200 | [diff] [blame] | 14 | or: $dashless [--quiet] sync [--] [<path>...]" |
Junio C Hamano | 8f321a3 | 2007-11-06 01:50:02 -0800 | [diff] [blame] | 15 | OPTIONS_SPEC= |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 16 | . git-sh-setup |
Mark Levedahl | 98fcf84 | 2008-08-24 14:46:10 -0400 | [diff] [blame] | 17 | . git-parse-remote |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 18 | require_work_tree |
| 19 | |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 20 | command= |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 21 | branch= |
Jens Lehmann | d27b876 | 2010-07-17 17:11:43 +0200 | [diff] [blame] | 22 | force= |
Michael S. Tsirkin | d92a395 | 2009-05-04 22:30:01 +0300 | [diff] [blame] | 23 | reference= |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 24 | cached= |
Gerrit Pape | 48bb303 | 2010-04-26 11:50:39 +0200 | [diff] [blame] | 25 | recursive= |
| 26 | init= |
Jens Lehmann | 1c244f6 | 2009-08-13 21:32:50 +0200 | [diff] [blame] | 27 | files= |
Fabian Franz | 31ca3ac | 2009-02-05 20:18:32 -0200 | [diff] [blame] | 28 | nofetch= |
Johan Herland | 3294842 | 2009-06-03 08:27:06 +0200 | [diff] [blame] | 29 | update= |
Johan Herland | 15fc56a | 2009-08-19 03:45:22 +0200 | [diff] [blame] | 30 | prefix= |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 31 | |
Mark Levedahl | f31a522 | 2007-09-23 22:19:42 -0400 | [diff] [blame] | 32 | # Resolve relative url by appending to parent's url |
| 33 | resolve_relative_url () |
| 34 | { |
Mark Levedahl | 98fcf84 | 2008-08-24 14:46:10 -0400 | [diff] [blame] | 35 | remote=$(get_default_remote) |
Mark Levedahl | 8e7e6f3 | 2008-06-14 13:09:41 -0400 | [diff] [blame] | 36 | remoteurl=$(git config "remote.$remote.url") || |
| 37 | die "remote ($remote) does not have a url defined in .git/config" |
Mark Levedahl | f31a522 | 2007-09-23 22:19:42 -0400 | [diff] [blame] | 38 | url="$1" |
Mark Levedahl | 99b120a | 2008-08-21 19:54:01 -0400 | [diff] [blame] | 39 | remoteurl=${remoteurl%/} |
Thomas Rast | ea640cc | 2011-01-10 11:37:26 +0100 | [diff] [blame] | 40 | sep=/ |
Mark Levedahl | f31a522 | 2007-09-23 22:19:42 -0400 | [diff] [blame] | 41 | while test -n "$url" |
| 42 | do |
| 43 | case "$url" in |
| 44 | ../*) |
| 45 | url="${url#../}" |
Thomas Rast | ea640cc | 2011-01-10 11:37:26 +0100 | [diff] [blame] | 46 | case "$remoteurl" in |
| 47 | */*) |
| 48 | remoteurl="${remoteurl%/*}" |
| 49 | ;; |
| 50 | *:*) |
| 51 | remoteurl="${remoteurl%:*}" |
| 52 | sep=: |
| 53 | ;; |
| 54 | *) |
| 55 | die "cannot strip one component off url '$remoteurl'" |
| 56 | ;; |
| 57 | esac |
Mark Levedahl | f31a522 | 2007-09-23 22:19:42 -0400 | [diff] [blame] | 58 | ;; |
| 59 | ./*) |
| 60 | url="${url#./}" |
| 61 | ;; |
| 62 | *) |
| 63 | break;; |
| 64 | esac |
| 65 | done |
Thomas Rast | ea640cc | 2011-01-10 11:37:26 +0100 | [diff] [blame] | 66 | echo "$remoteurl$sep${url%/}" |
Mark Levedahl | f31a522 | 2007-09-23 22:19:42 -0400 | [diff] [blame] | 67 | } |
| 68 | |
Lars Hjemli | 941987a | 2007-06-11 21:12:24 +0200 | [diff] [blame] | 69 | # |
David Aguilar | a7b3269 | 2008-08-22 00:30:50 -0700 | [diff] [blame] | 70 | # Get submodule info for registered submodules |
| 71 | # $@ = path to limit submodule list |
| 72 | # |
| 73 | module_list() |
| 74 | { |
Junio C Hamano | e1622bf | 2009-11-23 15:56:32 -0800 | [diff] [blame] | 75 | git ls-files --error-unmatch --stage -- "$@" | sane_grep '^160000 ' |
David Aguilar | a7b3269 | 2008-08-22 00:30:50 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | # |
Lars Hjemli | 941987a | 2007-06-11 21:12:24 +0200 | [diff] [blame] | 79 | # Map submodule path to submodule name |
| 80 | # |
| 81 | # $1 = path |
| 82 | # |
| 83 | module_name() |
| 84 | { |
Junio C Hamano | 537601a | 2007-07-25 15:51:26 -0700 | [diff] [blame] | 85 | # Do we have "submodule.<something>.path = $1" defined in .gitmodules file? |
Chris Ridd | fe22e54 | 2008-06-11 14:09:19 +0100 | [diff] [blame] | 86 | re=$(printf '%s\n' "$1" | sed -e 's/[].[^$\\*]/\\&/g') |
Imran M Yousuf | a5099bb | 2008-05-15 13:42:58 +0600 | [diff] [blame] | 87 | name=$( git config -f .gitmodules --get-regexp '^submodule\..*\.path$' | |
Junio C Hamano | 537601a | 2007-07-25 15:51:26 -0700 | [diff] [blame] | 88 | sed -n -e 's|^submodule\.\(.*\)\.path '"$re"'$|\1|p' ) |
Lars Hjemli | 941987a | 2007-06-11 21:12:24 +0200 | [diff] [blame] | 89 | test -z "$name" && |
| 90 | die "No submodule mapping found in .gitmodules for path '$path'" |
| 91 | echo "$name" |
| 92 | } |
Lars Hjemli | 33aa6ff | 2007-06-06 11:13:01 +0200 | [diff] [blame] | 93 | |
| 94 | # |
| 95 | # Clone a submodule |
| 96 | # |
Junio C Hamano | 23a485e | 2008-01-15 02:35:49 -0800 | [diff] [blame] | 97 | # Prior to calling, cmd_update checks that a possibly existing |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 98 | # path is not a git repository. |
Junio C Hamano | 23a485e | 2008-01-15 02:35:49 -0800 | [diff] [blame] | 99 | # Likewise, cmd_add checks that path does not exist at all, |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 100 | # since it is the location of a new submodule. |
| 101 | # |
Lars Hjemli | 33aa6ff | 2007-06-06 11:13:01 +0200 | [diff] [blame] | 102 | module_clone() |
| 103 | { |
| 104 | path=$1 |
| 105 | url=$2 |
Michael S. Tsirkin | d92a395 | 2009-05-04 22:30:01 +0300 | [diff] [blame] | 106 | reference="$3" |
Lars Hjemli | 33aa6ff | 2007-06-06 11:13:01 +0200 | [diff] [blame] | 107 | |
Michael S. Tsirkin | d92a395 | 2009-05-04 22:30:01 +0300 | [diff] [blame] | 108 | if test -n "$reference" |
| 109 | then |
| 110 | git-clone "$reference" -n "$url" "$path" |
| 111 | else |
| 112 | git-clone -n "$url" "$path" |
| 113 | fi || |
Lars Hjemli | 941987a | 2007-06-11 21:12:24 +0200 | [diff] [blame] | 114 | die "Clone of '$url' into submodule path '$path' failed" |
Lars Hjemli | 33aa6ff | 2007-06-06 11:13:01 +0200 | [diff] [blame] | 115 | } |
| 116 | |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 117 | # |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 118 | # Add a new submodule to the working tree, .gitmodules and the index |
| 119 | # |
Mark Levedahl | ec05df3 | 2008-07-09 21:05:40 -0400 | [diff] [blame] | 120 | # $@ = repo path |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 121 | # |
| 122 | # optional branch is stored in global branch variable |
| 123 | # |
Junio C Hamano | 23a485e | 2008-01-15 02:35:49 -0800 | [diff] [blame] | 124 | cmd_add() |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 125 | { |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 126 | # parse $args after "submodule ... add". |
| 127 | while test $# -ne 0 |
| 128 | do |
| 129 | case "$1" in |
| 130 | -b | --branch) |
| 131 | case "$2" in '') usage ;; esac |
| 132 | branch=$2 |
| 133 | shift |
| 134 | ;; |
Jens Lehmann | d27b876 | 2010-07-17 17:11:43 +0200 | [diff] [blame] | 135 | -f | --force) |
| 136 | force=$1 |
| 137 | ;; |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 138 | -q|--quiet) |
Stephen Boyd | 2e6a30e | 2009-06-16 15:33:00 -0700 | [diff] [blame] | 139 | GIT_QUIET=1 |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 140 | ;; |
Michael S. Tsirkin | d92a395 | 2009-05-04 22:30:01 +0300 | [diff] [blame] | 141 | --reference) |
| 142 | case "$2" in '') usage ;; esac |
| 143 | reference="--reference=$2" |
| 144 | shift |
| 145 | ;; |
| 146 | --reference=*) |
| 147 | reference="$1" |
| 148 | shift |
| 149 | ;; |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 150 | --) |
| 151 | shift |
| 152 | break |
| 153 | ;; |
| 154 | -*) |
| 155 | usage |
| 156 | ;; |
| 157 | *) |
| 158 | break |
| 159 | ;; |
| 160 | esac |
| 161 | shift |
| 162 | done |
| 163 | |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 164 | repo=$1 |
| 165 | path=$2 |
| 166 | |
Jens Lehmann | 1414e57 | 2009-09-22 17:10:12 +0200 | [diff] [blame] | 167 | if test -z "$path"; then |
| 168 | path=$(echo "$repo" | |
| 169 | sed -e 's|/$||' -e 's|:*/*\.git$||' -e 's|.*[/:]||g') |
| 170 | fi |
| 171 | |
Mark Levedahl | ec05df3 | 2008-07-09 21:05:40 -0400 | [diff] [blame] | 172 | if test -z "$repo" -o -z "$path"; then |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 173 | usage |
| 174 | fi |
| 175 | |
Mark Levedahl | ec05df3 | 2008-07-09 21:05:40 -0400 | [diff] [blame] | 176 | # assure repo is absolute or relative to parent |
| 177 | case "$repo" in |
| 178 | ./*|../*) |
| 179 | # dereference source url relative to parent's url |
| 180 | realrepo=$(resolve_relative_url "$repo") || exit |
| 181 | ;; |
| 182 | *:*|/*) |
| 183 | # absolute url |
| 184 | realrepo=$repo |
| 185 | ;; |
| 186 | *) |
| 187 | die "repo URL: '$repo' must be absolute or begin with ./|../" |
| 188 | ;; |
| 189 | esac |
| 190 | |
Michael J Gruber | db75ada | 2009-03-03 16:08:21 +0100 | [diff] [blame] | 191 | # normalize path: |
| 192 | # multiple //; leading ./; /./; /../; trailing / |
| 193 | path=$(printf '%s/\n' "$path" | |
| 194 | sed -e ' |
| 195 | s|//*|/|g |
| 196 | s|^\(\./\)*|| |
| 197 | s|/\./|/|g |
| 198 | :start |
| 199 | s|\([^/]*\)/\.\./|| |
| 200 | tstart |
| 201 | s|/*$|| |
| 202 | ') |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 203 | git ls-files --error-unmatch "$path" > /dev/null 2>&1 && |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 204 | die "'$path' already exists in the index" |
| 205 | |
Jens Lehmann | d27b876 | 2010-07-17 17:11:43 +0200 | [diff] [blame] | 206 | if test -z "$force" && ! git add --dry-run --ignore-missing "$path" > /dev/null 2>&1 |
| 207 | then |
| 208 | echo >&2 "The following path is ignored by one of your .gitignore files:" && |
| 209 | echo >&2 $path && |
| 210 | echo >&2 "Use -f if you really want to add it." |
| 211 | exit 1 |
| 212 | fi |
| 213 | |
Mark Levedahl | d4264ca | 2008-03-04 20:15:02 -0500 | [diff] [blame] | 214 | # perhaps the path exists and is already a git repo, else clone it |
| 215 | if test -e "$path" |
| 216 | then |
Mark Levedahl | e965647 | 2008-07-07 22:36:40 -0400 | [diff] [blame] | 217 | if test -d "$path"/.git -o -f "$path"/.git |
Mark Levedahl | d4264ca | 2008-03-04 20:15:02 -0500 | [diff] [blame] | 218 | then |
| 219 | echo "Adding existing repo at '$path' to the index" |
| 220 | else |
| 221 | die "'$path' already exists and is not a valid git repo" |
| 222 | fi |
Mark Levedahl | c2f9391 | 2008-07-09 21:05:41 -0400 | [diff] [blame] | 223 | |
| 224 | case "$repo" in |
| 225 | ./*|../*) |
| 226 | url=$(resolve_relative_url "$repo") || exit |
| 227 | ;; |
| 228 | *) |
| 229 | url="$repo" |
| 230 | ;; |
| 231 | esac |
| 232 | git config submodule."$path".url "$url" |
Mark Levedahl | d4264ca | 2008-03-04 20:15:02 -0500 | [diff] [blame] | 233 | else |
Mark Levedahl | d4264ca | 2008-03-04 20:15:02 -0500 | [diff] [blame] | 234 | |
Michael S. Tsirkin | d92a395 | 2009-05-04 22:30:01 +0300 | [diff] [blame] | 235 | module_clone "$path" "$realrepo" "$reference" || exit |
Ben Jackson | ea10b60 | 2009-04-18 20:42:07 -0700 | [diff] [blame] | 236 | ( |
Giuseppe Bilotta | 74ae141 | 2010-02-25 00:34:17 +0100 | [diff] [blame] | 237 | clear_local_git_env |
Ben Jackson | ea10b60 | 2009-04-18 20:42:07 -0700 | [diff] [blame] | 238 | cd "$path" && |
| 239 | # ash fails to wordsplit ${branch:+-b "$branch"...} |
| 240 | case "$branch" in |
| 241 | '') git checkout -f -q ;; |
Jonathan Nieder | 502dc5b | 2010-12-01 12:50:46 -0600 | [diff] [blame] | 242 | ?*) git checkout -f -q -B "$branch" "origin/$branch" ;; |
Ben Jackson | ea10b60 | 2009-04-18 20:42:07 -0700 | [diff] [blame] | 243 | esac |
| 244 | ) || die "Unable to checkout submodule '$path'" |
Mark Levedahl | d4264ca | 2008-03-04 20:15:02 -0500 | [diff] [blame] | 245 | fi |
| 246 | |
Jens Lehmann | d27b876 | 2010-07-17 17:11:43 +0200 | [diff] [blame] | 247 | git add $force "$path" || |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 248 | die "Failed to add submodule '$path'" |
| 249 | |
Imran M Yousuf | a5099bb | 2008-05-15 13:42:58 +0600 | [diff] [blame] | 250 | git config -f .gitmodules submodule."$path".path "$path" && |
| 251 | git config -f .gitmodules submodule."$path".url "$repo" && |
Ævar Arnfjörð Bjarmason | 31991b0 | 2010-07-05 17:33:03 +0000 | [diff] [blame] | 252 | git add --force .gitmodules || |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 253 | die "Failed to register submodule '$path'" |
| 254 | } |
| 255 | |
| 256 | # |
Mark Levedahl | 19a31f9 | 2008-08-10 19:10:04 -0400 | [diff] [blame] | 257 | # Execute an arbitrary command sequence in each checked out |
| 258 | # submodule |
| 259 | # |
| 260 | # $@ = command to execute |
| 261 | # |
| 262 | cmd_foreach() |
| 263 | { |
Johan Herland | 1d5bec8 | 2009-08-19 03:45:19 +0200 | [diff] [blame] | 264 | # parse $args after "submodule ... foreach". |
| 265 | while test $# -ne 0 |
| 266 | do |
| 267 | case "$1" in |
| 268 | -q|--quiet) |
| 269 | GIT_QUIET=1 |
| 270 | ;; |
Johan Herland | 15fc56a | 2009-08-19 03:45:22 +0200 | [diff] [blame] | 271 | --recursive) |
| 272 | recursive=1 |
| 273 | ;; |
Johan Herland | 1d5bec8 | 2009-08-19 03:45:19 +0200 | [diff] [blame] | 274 | -*) |
| 275 | usage |
| 276 | ;; |
| 277 | *) |
| 278 | break |
| 279 | ;; |
| 280 | esac |
| 281 | shift |
| 282 | done |
| 283 | |
Ævar Arnfjörð Bjarmason | f030c96 | 2010-05-21 16:10:10 +0000 | [diff] [blame] | 284 | toplevel=$(pwd) |
| 285 | |
David Aguilar | a7b3269 | 2008-08-22 00:30:50 -0700 | [diff] [blame] | 286 | module_list | |
Mark Levedahl | 19a31f9 | 2008-08-10 19:10:04 -0400 | [diff] [blame] | 287 | while read mode sha1 stage path |
| 288 | do |
| 289 | if test -e "$path"/.git |
| 290 | then |
Johan Herland | 15fc56a | 2009-08-19 03:45:22 +0200 | [diff] [blame] | 291 | say "Entering '$prefix$path'" |
Johan Herland | 1e7f2aa | 2009-08-16 03:10:08 +0200 | [diff] [blame] | 292 | name=$(module_name "$path") |
Johan Herland | 15fc56a | 2009-08-19 03:45:22 +0200 | [diff] [blame] | 293 | ( |
| 294 | prefix="$prefix$path/" |
Giuseppe Bilotta | 74ae141 | 2010-02-25 00:34:17 +0100 | [diff] [blame] | 295 | clear_local_git_env |
Johan Herland | 15fc56a | 2009-08-19 03:45:22 +0200 | [diff] [blame] | 296 | cd "$path" && |
| 297 | eval "$@" && |
| 298 | if test -n "$recursive" |
| 299 | then |
| 300 | cmd_foreach "--recursive" "$@" |
| 301 | fi |
| 302 | ) || |
Mark Levedahl | 19a31f9 | 2008-08-10 19:10:04 -0400 | [diff] [blame] | 303 | die "Stopping at '$path'; script returned non-zero status." |
| 304 | fi |
| 305 | done |
| 306 | } |
| 307 | |
| 308 | # |
Lars Hjemli | 211b7f1 | 2007-06-06 11:13:02 +0200 | [diff] [blame] | 309 | # Register submodules in .git/config |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 310 | # |
| 311 | # $@ = requested paths (default to all) |
| 312 | # |
Junio C Hamano | 23a485e | 2008-01-15 02:35:49 -0800 | [diff] [blame] | 313 | cmd_init() |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 314 | { |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 315 | # parse $args after "submodule ... init". |
| 316 | while test $# -ne 0 |
| 317 | do |
| 318 | case "$1" in |
| 319 | -q|--quiet) |
Stephen Boyd | 2e6a30e | 2009-06-16 15:33:00 -0700 | [diff] [blame] | 320 | GIT_QUIET=1 |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 321 | ;; |
| 322 | --) |
| 323 | shift |
| 324 | break |
| 325 | ;; |
| 326 | -*) |
| 327 | usage |
| 328 | ;; |
| 329 | *) |
| 330 | break |
| 331 | ;; |
| 332 | esac |
| 333 | shift |
| 334 | done |
| 335 | |
David Aguilar | a7b3269 | 2008-08-22 00:30:50 -0700 | [diff] [blame] | 336 | module_list "$@" | |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 337 | while read mode sha1 stage path |
| 338 | do |
Lars Hjemli | 211b7f1 | 2007-06-06 11:13:02 +0200 | [diff] [blame] | 339 | # Skip already registered paths |
Lars Hjemli | 941987a | 2007-06-11 21:12:24 +0200 | [diff] [blame] | 340 | name=$(module_name "$path") || exit |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 341 | url=$(git config submodule."$name".url) |
Lars Hjemli | 211b7f1 | 2007-06-06 11:13:02 +0200 | [diff] [blame] | 342 | test -z "$url" || continue |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 343 | |
Imran M Yousuf | a5099bb | 2008-05-15 13:42:58 +0600 | [diff] [blame] | 344 | url=$(git config -f .gitmodules submodule."$name".url) |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 345 | test -z "$url" && |
Lars Hjemli | 941987a | 2007-06-11 21:12:24 +0200 | [diff] [blame] | 346 | die "No url found for submodule path '$path' in .gitmodules" |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 347 | |
Mark Levedahl | f31a522 | 2007-09-23 22:19:42 -0400 | [diff] [blame] | 348 | # Possibly a url relative to parent |
| 349 | case "$url" in |
| 350 | ./*|../*) |
Mark Levedahl | 8e7e6f3 | 2008-06-14 13:09:41 -0400 | [diff] [blame] | 351 | url=$(resolve_relative_url "$url") || exit |
Mark Levedahl | f31a522 | 2007-09-23 22:19:42 -0400 | [diff] [blame] | 352 | ;; |
| 353 | esac |
| 354 | |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 355 | git config submodule."$name".url "$url" || |
Lars Hjemli | 941987a | 2007-06-11 21:12:24 +0200 | [diff] [blame] | 356 | die "Failed to register url for submodule path '$path'" |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 357 | |
Johan Herland | 3294842 | 2009-06-03 08:27:06 +0200 | [diff] [blame] | 358 | upd="$(git config -f .gitmodules submodule."$name".update)" |
| 359 | test -z "$upd" || |
| 360 | git config submodule."$name".update "$upd" || |
| 361 | die "Failed to register update mode for submodule path '$path'" |
Peter Hutterer | ca2cedb | 2009-04-24 09:06:38 +1000 | [diff] [blame] | 362 | |
Lars Hjemli | 941987a | 2007-06-11 21:12:24 +0200 | [diff] [blame] | 363 | say "Submodule '$name' ($url) registered for path '$path'" |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 364 | done |
| 365 | } |
| 366 | |
| 367 | # |
Lars Hjemli | 211b7f1 | 2007-06-06 11:13:02 +0200 | [diff] [blame] | 368 | # Update each submodule path to correct revision, using clone and checkout as needed |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 369 | # |
| 370 | # $@ = requested paths (default to all) |
| 371 | # |
Junio C Hamano | 23a485e | 2008-01-15 02:35:49 -0800 | [diff] [blame] | 372 | cmd_update() |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 373 | { |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 374 | # parse $args after "submodule ... update". |
Kevin Ballard | 98dbe63 | 2010-11-02 23:26:25 -0700 | [diff] [blame] | 375 | orig_flags= |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 376 | while test $# -ne 0 |
| 377 | do |
| 378 | case "$1" in |
| 379 | -q|--quiet) |
Stephen Boyd | 2e6a30e | 2009-06-16 15:33:00 -0700 | [diff] [blame] | 380 | GIT_QUIET=1 |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 381 | ;; |
Johannes Schindelin | be4d2c8 | 2008-05-16 11:23:03 +0100 | [diff] [blame] | 382 | -i|--init) |
Michael S. Tsirkin | d92a395 | 2009-05-04 22:30:01 +0300 | [diff] [blame] | 383 | init=1 |
Johannes Schindelin | be4d2c8 | 2008-05-16 11:23:03 +0100 | [diff] [blame] | 384 | ;; |
Fabian Franz | 31ca3ac | 2009-02-05 20:18:32 -0200 | [diff] [blame] | 385 | -N|--no-fetch) |
Fabian Franz | 31ca3ac | 2009-02-05 20:18:32 -0200 | [diff] [blame] | 386 | nofetch=1 |
| 387 | ;; |
Peter Hutterer | ca2cedb | 2009-04-24 09:06:38 +1000 | [diff] [blame] | 388 | -r|--rebase) |
Johan Herland | 3294842 | 2009-06-03 08:27:06 +0200 | [diff] [blame] | 389 | update="rebase" |
Peter Hutterer | ca2cedb | 2009-04-24 09:06:38 +1000 | [diff] [blame] | 390 | ;; |
Michael S. Tsirkin | d92a395 | 2009-05-04 22:30:01 +0300 | [diff] [blame] | 391 | --reference) |
| 392 | case "$2" in '') usage ;; esac |
| 393 | reference="--reference=$2" |
Kevin Ballard | 98dbe63 | 2010-11-02 23:26:25 -0700 | [diff] [blame] | 394 | orig_flags="$orig_flags $(git rev-parse --sq-quote "$1")" |
| 395 | shift |
Michael S. Tsirkin | d92a395 | 2009-05-04 22:30:01 +0300 | [diff] [blame] | 396 | ;; |
| 397 | --reference=*) |
| 398 | reference="$1" |
Michael S. Tsirkin | d92a395 | 2009-05-04 22:30:01 +0300 | [diff] [blame] | 399 | ;; |
Johan Herland | 42b4917 | 2009-06-03 00:59:12 +0200 | [diff] [blame] | 400 | -m|--merge) |
Johan Herland | 42b4917 | 2009-06-03 00:59:12 +0200 | [diff] [blame] | 401 | update="merge" |
| 402 | ;; |
Johan Herland | b13fd5c | 2009-08-19 03:45:23 +0200 | [diff] [blame] | 403 | --recursive) |
Johan Herland | b13fd5c | 2009-08-19 03:45:23 +0200 | [diff] [blame] | 404 | recursive=1 |
| 405 | ;; |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 406 | --) |
| 407 | shift |
| 408 | break |
| 409 | ;; |
| 410 | -*) |
| 411 | usage |
| 412 | ;; |
| 413 | *) |
| 414 | break |
| 415 | ;; |
| 416 | esac |
Kevin Ballard | 98dbe63 | 2010-11-02 23:26:25 -0700 | [diff] [blame] | 417 | orig_flags="$orig_flags $(git rev-parse --sq-quote "$1")" |
| 418 | shift |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 419 | done |
| 420 | |
Michael S. Tsirkin | d92a395 | 2009-05-04 22:30:01 +0300 | [diff] [blame] | 421 | if test -n "$init" |
| 422 | then |
| 423 | cmd_init "--" "$@" || return |
| 424 | fi |
| 425 | |
David Aguilar | a7b3269 | 2008-08-22 00:30:50 -0700 | [diff] [blame] | 426 | module_list "$@" | |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 427 | while read mode sha1 stage path |
| 428 | do |
Lars Hjemli | 941987a | 2007-06-11 21:12:24 +0200 | [diff] [blame] | 429 | name=$(module_name "$path") || exit |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 430 | url=$(git config submodule."$name".url) |
Johan Herland | 3294842 | 2009-06-03 08:27:06 +0200 | [diff] [blame] | 431 | update_module=$(git config submodule."$name".update) |
Lars Hjemli | 211b7f1 | 2007-06-06 11:13:02 +0200 | [diff] [blame] | 432 | if test -z "$url" |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 433 | then |
| 434 | # Only mention uninitialized submodules when its |
| 435 | # path have been specified |
| 436 | test "$#" != "0" && |
Alexandre Julliard | 989206f | 2008-11-11 22:09:16 +0100 | [diff] [blame] | 437 | say "Submodule path '$path' not initialized" && |
Johannes Schindelin | be4d2c8 | 2008-05-16 11:23:03 +0100 | [diff] [blame] | 438 | say "Maybe you want to use 'update --init'?" |
Lars Hjemli | 211b7f1 | 2007-06-06 11:13:02 +0200 | [diff] [blame] | 439 | continue |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 440 | fi |
Lars Hjemli | 211b7f1 | 2007-06-06 11:13:02 +0200 | [diff] [blame] | 441 | |
Lars Hjemli | ba88a1f | 2008-02-20 23:13:15 +0100 | [diff] [blame] | 442 | if ! test -d "$path"/.git -o -f "$path"/.git |
Lars Hjemli | 211b7f1 | 2007-06-06 11:13:02 +0200 | [diff] [blame] | 443 | then |
Michael S. Tsirkin | d92a395 | 2009-05-04 22:30:01 +0300 | [diff] [blame] | 444 | module_clone "$path" "$url" "$reference"|| exit |
Lars Hjemli | bf2d824 | 2007-06-11 21:12:22 +0200 | [diff] [blame] | 445 | subsha1= |
| 446 | else |
Giuseppe Bilotta | 74ae141 | 2010-02-25 00:34:17 +0100 | [diff] [blame] | 447 | subsha1=$(clear_local_git_env; cd "$path" && |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 448 | git rev-parse --verify HEAD) || |
Lars Hjemli | 941987a | 2007-06-11 21:12:24 +0200 | [diff] [blame] | 449 | die "Unable to find current revision in submodule path '$path'" |
Lars Hjemli | 211b7f1 | 2007-06-06 11:13:02 +0200 | [diff] [blame] | 450 | fi |
| 451 | |
Johan Herland | 3294842 | 2009-06-03 08:27:06 +0200 | [diff] [blame] | 452 | if ! test -z "$update" |
Peter Hutterer | ca2cedb | 2009-04-24 09:06:38 +1000 | [diff] [blame] | 453 | then |
Johan Herland | 3294842 | 2009-06-03 08:27:06 +0200 | [diff] [blame] | 454 | update_module=$update |
Peter Hutterer | ca2cedb | 2009-04-24 09:06:38 +1000 | [diff] [blame] | 455 | fi |
| 456 | |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 457 | if test "$subsha1" != "$sha1" |
| 458 | then |
Ping Yin | b9b378a | 2008-09-26 23:33:23 +0800 | [diff] [blame] | 459 | force= |
| 460 | if test -z "$subsha1" |
| 461 | then |
| 462 | force="-f" |
| 463 | fi |
Fabian Franz | 31ca3ac | 2009-02-05 20:18:32 -0200 | [diff] [blame] | 464 | |
| 465 | if test -z "$nofetch" |
| 466 | then |
Giuseppe Bilotta | 74ae141 | 2010-02-25 00:34:17 +0100 | [diff] [blame] | 467 | (clear_local_git_env; cd "$path" && |
Fabian Franz | 31ca3ac | 2009-02-05 20:18:32 -0200 | [diff] [blame] | 468 | git-fetch) || |
| 469 | die "Unable to fetch in submodule path '$path'" |
| 470 | fi |
| 471 | |
Johan Herland | 3294842 | 2009-06-03 08:27:06 +0200 | [diff] [blame] | 472 | case "$update_module" in |
| 473 | rebase) |
| 474 | command="git rebase" |
Peter Hutterer | ca2cedb | 2009-04-24 09:06:38 +1000 | [diff] [blame] | 475 | action="rebase" |
| 476 | msg="rebased onto" |
Johan Herland | 3294842 | 2009-06-03 08:27:06 +0200 | [diff] [blame] | 477 | ;; |
Johan Herland | 42b4917 | 2009-06-03 00:59:12 +0200 | [diff] [blame] | 478 | merge) |
| 479 | command="git merge" |
| 480 | action="merge" |
| 481 | msg="merged in" |
| 482 | ;; |
Johan Herland | 3294842 | 2009-06-03 08:27:06 +0200 | [diff] [blame] | 483 | *) |
| 484 | command="git checkout $force -q" |
Peter Hutterer | ca2cedb | 2009-04-24 09:06:38 +1000 | [diff] [blame] | 485 | action="checkout" |
| 486 | msg="checked out" |
Johan Herland | 3294842 | 2009-06-03 08:27:06 +0200 | [diff] [blame] | 487 | ;; |
| 488 | esac |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 489 | |
Giuseppe Bilotta | 74ae141 | 2010-02-25 00:34:17 +0100 | [diff] [blame] | 490 | (clear_local_git_env; cd "$path" && $command "$sha1") || |
Peter Hutterer | ca2cedb | 2009-04-24 09:06:38 +1000 | [diff] [blame] | 491 | die "Unable to $action '$sha1' in submodule path '$path'" |
| 492 | say "Submodule path '$path': $msg '$sha1'" |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 493 | fi |
Johan Herland | b13fd5c | 2009-08-19 03:45:23 +0200 | [diff] [blame] | 494 | |
| 495 | if test -n "$recursive" |
| 496 | then |
Kevin Ballard | 98dbe63 | 2010-11-02 23:26:25 -0700 | [diff] [blame] | 497 | (clear_local_git_env; cd "$path" && eval cmd_update "$orig_flags") || |
Johan Herland | b13fd5c | 2009-08-19 03:45:23 +0200 | [diff] [blame] | 498 | die "Failed to recurse into submodule path '$path'" |
| 499 | fi |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 500 | done |
| 501 | } |
| 502 | |
Emil Medve | bffe71f | 2007-06-26 18:40:58 -0500 | [diff] [blame] | 503 | set_name_rev () { |
| 504 | revname=$( ( |
Giuseppe Bilotta | 74ae141 | 2010-02-25 00:34:17 +0100 | [diff] [blame] | 505 | clear_local_git_env |
Emil Medve | bffe71f | 2007-06-26 18:40:58 -0500 | [diff] [blame] | 506 | cd "$1" && { |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 507 | git describe "$2" 2>/dev/null || |
| 508 | git describe --tags "$2" 2>/dev/null || |
Mark Levedahl | f669ac0 | 2008-04-14 22:48:06 -0400 | [diff] [blame] | 509 | git describe --contains "$2" 2>/dev/null || |
| 510 | git describe --all --always "$2" |
Emil Medve | bffe71f | 2007-06-26 18:40:58 -0500 | [diff] [blame] | 511 | } |
| 512 | ) ) |
| 513 | test -z "$revname" || revname=" ($revname)" |
| 514 | } |
Ping Yin | 28f9af5 | 2008-03-11 21:52:15 +0800 | [diff] [blame] | 515 | # |
| 516 | # Show commit summary for submodules in index or working tree |
| 517 | # |
| 518 | # If '--cached' is given, show summary between index and given commit, |
| 519 | # or between working tree and given commit |
| 520 | # |
| 521 | # $@ = [commit (default 'HEAD'),] requested paths (default all) |
| 522 | # |
| 523 | cmd_summary() { |
Ping Yin | f2dc06a | 2008-03-11 21:52:17 +0800 | [diff] [blame] | 524 | summary_limit=-1 |
Ping Yin | d0f64dd | 2008-04-12 23:05:31 +0800 | [diff] [blame] | 525 | for_status= |
Jens Lehmann | 1c244f6 | 2009-08-13 21:32:50 +0200 | [diff] [blame] | 526 | diff_cmd=diff-index |
Emil Medve | bffe71f | 2007-06-26 18:40:58 -0500 | [diff] [blame] | 527 | |
Ping Yin | 28f9af5 | 2008-03-11 21:52:15 +0800 | [diff] [blame] | 528 | # parse $args after "submodule ... summary". |
| 529 | while test $# -ne 0 |
| 530 | do |
| 531 | case "$1" in |
| 532 | --cached) |
| 533 | cached="$1" |
| 534 | ;; |
Jens Lehmann | 1c244f6 | 2009-08-13 21:32:50 +0200 | [diff] [blame] | 535 | --files) |
| 536 | files="$1" |
| 537 | ;; |
Ping Yin | d0f64dd | 2008-04-12 23:05:31 +0800 | [diff] [blame] | 538 | --for-status) |
| 539 | for_status="$1" |
| 540 | ;; |
Ping Yin | f2dc06a | 2008-03-11 21:52:17 +0800 | [diff] [blame] | 541 | -n|--summary-limit) |
| 542 | if summary_limit=$(($2 + 0)) 2>/dev/null && test "$summary_limit" = "$2" |
| 543 | then |
| 544 | : |
| 545 | else |
| 546 | usage |
| 547 | fi |
| 548 | shift |
| 549 | ;; |
Ping Yin | 28f9af5 | 2008-03-11 21:52:15 +0800 | [diff] [blame] | 550 | --) |
| 551 | shift |
| 552 | break |
| 553 | ;; |
| 554 | -*) |
| 555 | usage |
| 556 | ;; |
| 557 | *) |
| 558 | break |
| 559 | ;; |
| 560 | esac |
| 561 | shift |
| 562 | done |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 563 | |
Ping Yin | f2dc06a | 2008-03-11 21:52:17 +0800 | [diff] [blame] | 564 | test $summary_limit = 0 && return |
| 565 | |
Johan Herland | 3deea89 | 2010-02-16 11:21:14 +0100 | [diff] [blame] | 566 | if rev=$(git rev-parse -q --verify --default HEAD ${1+"$1"}) |
Ping Yin | 28f9af5 | 2008-03-11 21:52:15 +0800 | [diff] [blame] | 567 | then |
| 568 | head=$rev |
Jeff King | caa9c3c | 2010-03-03 14:19:09 -0800 | [diff] [blame] | 569 | test $# = 0 || shift |
Johan Herland | 3deea89 | 2010-02-16 11:21:14 +0100 | [diff] [blame] | 570 | elif test -z "$1" -o "$1" = "HEAD" |
| 571 | then |
Junio C Hamano | 14e940d | 2010-03-03 14:19:10 -0800 | [diff] [blame] | 572 | # before the first commit: compare with an empty tree |
| 573 | head=$(git hash-object -w -t tree --stdin </dev/null) |
Jens Lehmann | 2ea6c2c | 2010-03-09 15:55:32 +0100 | [diff] [blame] | 574 | test -z "$1" || shift |
Ping Yin | 28f9af5 | 2008-03-11 21:52:15 +0800 | [diff] [blame] | 575 | else |
Johan Herland | 3deea89 | 2010-02-16 11:21:14 +0100 | [diff] [blame] | 576 | head="HEAD" |
Ping Yin | 28f9af5 | 2008-03-11 21:52:15 +0800 | [diff] [blame] | 577 | fi |
| 578 | |
Jens Lehmann | 1c244f6 | 2009-08-13 21:32:50 +0200 | [diff] [blame] | 579 | if [ -n "$files" ] |
| 580 | then |
| 581 | test -n "$cached" && |
| 582 | die "--cached cannot be used with --files" |
| 583 | diff_cmd=diff-files |
| 584 | head= |
| 585 | fi |
| 586 | |
Ping Yin | 28f9af5 | 2008-03-11 21:52:15 +0800 | [diff] [blame] | 587 | cd_to_toplevel |
| 588 | # Get modified modules cared by user |
Jens Lehmann | 1807650 | 2010-06-25 16:56:02 +0200 | [diff] [blame] | 589 | modules=$(git $diff_cmd $cached --ignore-submodules=dirty --raw $head -- "$@" | |
Junio C Hamano | e1622bf | 2009-11-23 15:56:32 -0800 | [diff] [blame] | 590 | sane_egrep '^:([0-7]* )?160000' | |
Ping Yin | 28f9af5 | 2008-03-11 21:52:15 +0800 | [diff] [blame] | 591 | while read mod_src mod_dst sha1_src sha1_dst status name |
| 592 | do |
| 593 | # Always show modules deleted or type-changed (blob<->module) |
| 594 | test $status = D -o $status = T && echo "$name" && continue |
| 595 | # Also show added or modified modules which are checked out |
| 596 | GIT_DIR="$name/.git" git-rev-parse --git-dir >/dev/null 2>&1 && |
| 597 | echo "$name" |
| 598 | done |
| 599 | ) |
Ping Yin | 1cb639e | 2008-03-11 21:52:16 +0800 | [diff] [blame] | 600 | |
Ping Yin | d0f64dd | 2008-04-12 23:05:31 +0800 | [diff] [blame] | 601 | test -z "$modules" && return |
| 602 | |
Jens Lehmann | 1807650 | 2010-06-25 16:56:02 +0200 | [diff] [blame] | 603 | git $diff_cmd $cached --ignore-submodules=dirty --raw $head -- $modules | |
Junio C Hamano | e1622bf | 2009-11-23 15:56:32 -0800 | [diff] [blame] | 604 | sane_egrep '^:([0-7]* )?160000' | |
Ping Yin | 1cb639e | 2008-03-11 21:52:16 +0800 | [diff] [blame] | 605 | cut -c2- | |
| 606 | while read mod_src mod_dst sha1_src sha1_dst status name |
| 607 | do |
| 608 | if test -z "$cached" && |
| 609 | test $sha1_dst = 0000000000000000000000000000000000000000 |
| 610 | then |
| 611 | case "$mod_dst" in |
| 612 | 160000) |
| 613 | sha1_dst=$(GIT_DIR="$name/.git" git rev-parse HEAD) |
| 614 | ;; |
| 615 | 100644 | 100755 | 120000) |
| 616 | sha1_dst=$(git hash-object $name) |
| 617 | ;; |
| 618 | 000000) |
| 619 | ;; # removed |
| 620 | *) |
| 621 | # unexpected type |
| 622 | echo >&2 "unexpected mode $mod_dst" |
| 623 | continue ;; |
| 624 | esac |
| 625 | fi |
| 626 | missing_src= |
| 627 | missing_dst= |
| 628 | |
| 629 | test $mod_src = 160000 && |
Miklos Vajna | 30353a4 | 2008-12-03 14:26:52 +0100 | [diff] [blame] | 630 | ! GIT_DIR="$name/.git" git-rev-parse -q --verify $sha1_src^0 >/dev/null && |
Ping Yin | 1cb639e | 2008-03-11 21:52:16 +0800 | [diff] [blame] | 631 | missing_src=t |
| 632 | |
| 633 | test $mod_dst = 160000 && |
Miklos Vajna | 30353a4 | 2008-12-03 14:26:52 +0100 | [diff] [blame] | 634 | ! GIT_DIR="$name/.git" git-rev-parse -q --verify $sha1_dst^0 >/dev/null && |
Ping Yin | 1cb639e | 2008-03-11 21:52:16 +0800 | [diff] [blame] | 635 | missing_dst=t |
| 636 | |
| 637 | total_commits= |
| 638 | case "$missing_src,$missing_dst" in |
| 639 | t,) |
| 640 | errmsg=" Warn: $name doesn't contain commit $sha1_src" |
| 641 | ;; |
| 642 | ,t) |
| 643 | errmsg=" Warn: $name doesn't contain commit $sha1_dst" |
| 644 | ;; |
| 645 | t,t) |
| 646 | errmsg=" Warn: $name doesn't contain commits $sha1_src and $sha1_dst" |
| 647 | ;; |
| 648 | *) |
| 649 | errmsg= |
| 650 | total_commits=$( |
| 651 | if test $mod_src = 160000 -a $mod_dst = 160000 |
| 652 | then |
| 653 | range="$sha1_src...$sha1_dst" |
| 654 | elif test $mod_src = 160000 |
| 655 | then |
| 656 | range=$sha1_src |
| 657 | else |
| 658 | range=$sha1_dst |
| 659 | fi |
| 660 | GIT_DIR="$name/.git" \ |
Jeff King | b0e621a | 2010-04-08 15:42:37 -0400 | [diff] [blame] | 661 | git rev-list --first-parent $range -- | wc -l |
Ping Yin | 1cb639e | 2008-03-11 21:52:16 +0800 | [diff] [blame] | 662 | ) |
Johannes Sixt | eed3559 | 2008-03-12 09:30:01 +0100 | [diff] [blame] | 663 | total_commits=" ($(($total_commits + 0)))" |
Ping Yin | 1cb639e | 2008-03-11 21:52:16 +0800 | [diff] [blame] | 664 | ;; |
| 665 | esac |
| 666 | |
| 667 | sha1_abbr_src=$(echo $sha1_src | cut -c1-7) |
| 668 | sha1_abbr_dst=$(echo $sha1_dst | cut -c1-7) |
| 669 | if test $status = T |
| 670 | then |
| 671 | if test $mod_dst = 160000 |
| 672 | then |
| 673 | echo "* $name $sha1_abbr_src(blob)->$sha1_abbr_dst(submodule)$total_commits:" |
| 674 | else |
| 675 | echo "* $name $sha1_abbr_src(submodule)->$sha1_abbr_dst(blob)$total_commits:" |
| 676 | fi |
| 677 | else |
| 678 | echo "* $name $sha1_abbr_src...$sha1_abbr_dst$total_commits:" |
| 679 | fi |
| 680 | if test -n "$errmsg" |
| 681 | then |
| 682 | # Don't give error msg for modification whose dst is not submodule |
| 683 | # i.e. deleted or changed to blob |
| 684 | test $mod_dst = 160000 && echo "$errmsg" |
| 685 | else |
| 686 | if test $mod_src = 160000 -a $mod_dst = 160000 |
| 687 | then |
Ping Yin | f2dc06a | 2008-03-11 21:52:17 +0800 | [diff] [blame] | 688 | limit= |
| 689 | test $summary_limit -gt 0 && limit="-$summary_limit" |
Ping Yin | 1cb639e | 2008-03-11 21:52:16 +0800 | [diff] [blame] | 690 | GIT_DIR="$name/.git" \ |
Ping Yin | f2dc06a | 2008-03-11 21:52:17 +0800 | [diff] [blame] | 691 | git log $limit --pretty='format: %m %s' \ |
Ping Yin | 1cb639e | 2008-03-11 21:52:16 +0800 | [diff] [blame] | 692 | --first-parent $sha1_src...$sha1_dst |
| 693 | elif test $mod_dst = 160000 |
| 694 | then |
| 695 | GIT_DIR="$name/.git" \ |
| 696 | git log --pretty='format: > %s' -1 $sha1_dst |
| 697 | else |
| 698 | GIT_DIR="$name/.git" \ |
| 699 | git log --pretty='format: < %s' -1 $sha1_src |
| 700 | fi |
| 701 | echo |
| 702 | fi |
| 703 | echo |
Ping Yin | d0f64dd | 2008-04-12 23:05:31 +0800 | [diff] [blame] | 704 | done | |
| 705 | if test -n "$for_status"; then |
Jens Lehmann | f17a5d3 | 2010-01-17 20:42:31 +0100 | [diff] [blame] | 706 | if [ -n "$files" ]; then |
| 707 | echo "# Submodules changed but not updated:" |
| 708 | else |
| 709 | echo "# Submodule changes to be committed:" |
| 710 | fi |
Ping Yin | d0f64dd | 2008-04-12 23:05:31 +0800 | [diff] [blame] | 711 | echo "#" |
| 712 | sed -e 's|^|# |' -e 's|^# $|#|' |
| 713 | else |
| 714 | cat |
| 715 | fi |
Ping Yin | 28f9af5 | 2008-03-11 21:52:15 +0800 | [diff] [blame] | 716 | } |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 717 | # |
Lars Hjemli | 941987a | 2007-06-11 21:12:24 +0200 | [diff] [blame] | 718 | # List all submodules, prefixed with: |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 719 | # - submodule not initialized |
| 720 | # + different revision checked out |
| 721 | # |
| 722 | # If --cached was specified the revision in the index will be printed |
| 723 | # instead of the currently checked out revision. |
| 724 | # |
| 725 | # $@ = requested paths (default to all) |
| 726 | # |
Junio C Hamano | 23a485e | 2008-01-15 02:35:49 -0800 | [diff] [blame] | 727 | cmd_status() |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 728 | { |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 729 | # parse $args after "submodule ... status". |
Kevin Ballard | 98dbe63 | 2010-11-02 23:26:25 -0700 | [diff] [blame] | 730 | orig_flags= |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 731 | while test $# -ne 0 |
| 732 | do |
| 733 | case "$1" in |
| 734 | -q|--quiet) |
Stephen Boyd | 2e6a30e | 2009-06-16 15:33:00 -0700 | [diff] [blame] | 735 | GIT_QUIET=1 |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 736 | ;; |
| 737 | --cached) |
| 738 | cached=1 |
| 739 | ;; |
Johan Herland | 64b19ff | 2009-08-19 03:45:24 +0200 | [diff] [blame] | 740 | --recursive) |
| 741 | recursive=1 |
| 742 | ;; |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 743 | --) |
| 744 | shift |
| 745 | break |
| 746 | ;; |
| 747 | -*) |
| 748 | usage |
| 749 | ;; |
| 750 | *) |
| 751 | break |
| 752 | ;; |
| 753 | esac |
Kevin Ballard | 98dbe63 | 2010-11-02 23:26:25 -0700 | [diff] [blame] | 754 | orig_flags="$orig_flags $(git rev-parse --sq-quote "$1")" |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 755 | shift |
| 756 | done |
| 757 | |
David Aguilar | a7b3269 | 2008-08-22 00:30:50 -0700 | [diff] [blame] | 758 | module_list "$@" | |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 759 | while read mode sha1 stage path |
| 760 | do |
Lars Hjemli | 941987a | 2007-06-11 21:12:24 +0200 | [diff] [blame] | 761 | name=$(module_name "$path") || exit |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 762 | url=$(git config submodule."$name".url) |
Johan Herland | 64b19ff | 2009-08-19 03:45:24 +0200 | [diff] [blame] | 763 | displaypath="$prefix$path" |
Lars Hjemli | ba88a1f | 2008-02-20 23:13:15 +0100 | [diff] [blame] | 764 | if test -z "$url" || ! test -d "$path"/.git -o -f "$path"/.git |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 765 | then |
Johan Herland | 64b19ff | 2009-08-19 03:45:24 +0200 | [diff] [blame] | 766 | say "-$sha1 $displaypath" |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 767 | continue; |
| 768 | fi |
CJ van den Berg | 41c7c1b | 2007-07-04 18:22:14 +0200 | [diff] [blame] | 769 | set_name_rev "$path" "$sha1" |
Jens Lehmann | 1807650 | 2010-06-25 16:56:02 +0200 | [diff] [blame] | 770 | if git diff-files --ignore-submodules=dirty --quiet -- "$path" |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 771 | then |
Johan Herland | 64b19ff | 2009-08-19 03:45:24 +0200 | [diff] [blame] | 772 | say " $sha1 $displaypath$revname" |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 773 | else |
| 774 | if test -z "$cached" |
| 775 | then |
Giuseppe Bilotta | 74ae141 | 2010-02-25 00:34:17 +0100 | [diff] [blame] | 776 | sha1=$(clear_local_git_env; cd "$path" && git rev-parse --verify HEAD) |
CJ van den Berg | 41c7c1b | 2007-07-04 18:22:14 +0200 | [diff] [blame] | 777 | set_name_rev "$path" "$sha1" |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 778 | fi |
Johan Herland | 64b19ff | 2009-08-19 03:45:24 +0200 | [diff] [blame] | 779 | say "+$sha1 $displaypath$revname" |
| 780 | fi |
| 781 | |
| 782 | if test -n "$recursive" |
| 783 | then |
| 784 | ( |
| 785 | prefix="$displaypath/" |
Giuseppe Bilotta | 74ae141 | 2010-02-25 00:34:17 +0100 | [diff] [blame] | 786 | clear_local_git_env |
Johan Herland | 64b19ff | 2009-08-19 03:45:24 +0200 | [diff] [blame] | 787 | cd "$path" && |
Kevin Ballard | a7eff1a | 2010-11-02 23:26:24 -0700 | [diff] [blame] | 788 | eval cmd_status "$orig_args" |
Johan Herland | 64b19ff | 2009-08-19 03:45:24 +0200 | [diff] [blame] | 789 | ) || |
| 790 | die "Failed to recurse into submodule path '$path'" |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 791 | fi |
| 792 | done |
| 793 | } |
David Aguilar | 2327f61 | 2008-08-24 12:43:37 -0700 | [diff] [blame] | 794 | # |
| 795 | # Sync remote urls for submodules |
| 796 | # This makes the value for remote.$remote.url match the value |
| 797 | # specified in .gitmodules. |
| 798 | # |
| 799 | cmd_sync() |
| 800 | { |
| 801 | while test $# -ne 0 |
| 802 | do |
| 803 | case "$1" in |
| 804 | -q|--quiet) |
Stephen Boyd | 2e6a30e | 2009-06-16 15:33:00 -0700 | [diff] [blame] | 805 | GIT_QUIET=1 |
David Aguilar | 2327f61 | 2008-08-24 12:43:37 -0700 | [diff] [blame] | 806 | shift |
| 807 | ;; |
| 808 | --) |
| 809 | shift |
| 810 | break |
| 811 | ;; |
| 812 | -*) |
| 813 | usage |
| 814 | ;; |
| 815 | *) |
| 816 | break |
| 817 | ;; |
| 818 | esac |
| 819 | done |
| 820 | cd_to_toplevel |
| 821 | module_list "$@" | |
| 822 | while read mode sha1 stage path |
| 823 | do |
| 824 | name=$(module_name "$path") |
| 825 | url=$(git config -f .gitmodules --get submodule."$name".url) |
Johan Herland | baede9f | 2008-09-22 18:08:31 +0200 | [diff] [blame] | 826 | |
| 827 | # Possibly a url relative to parent |
| 828 | case "$url" in |
| 829 | ./*|../*) |
| 830 | url=$(resolve_relative_url "$url") || exit |
| 831 | ;; |
| 832 | esac |
| 833 | |
Andreas Köhler | 33f072f | 2010-10-08 03:07:48 +0200 | [diff] [blame] | 834 | say "Synchronizing submodule url for '$name'" |
| 835 | git config submodule."$name".url "$url" |
| 836 | |
David Aguilar | 2327f61 | 2008-08-24 12:43:37 -0700 | [diff] [blame] | 837 | if test -e "$path"/.git |
| 838 | then |
| 839 | ( |
Giuseppe Bilotta | 74ae141 | 2010-02-25 00:34:17 +0100 | [diff] [blame] | 840 | clear_local_git_env |
David Aguilar | 2327f61 | 2008-08-24 12:43:37 -0700 | [diff] [blame] | 841 | cd "$path" |
| 842 | remote=$(get_default_remote) |
David Aguilar | 2327f61 | 2008-08-24 12:43:37 -0700 | [diff] [blame] | 843 | git config remote."$remote".url "$url" |
| 844 | ) |
| 845 | fi |
| 846 | done |
| 847 | } |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 848 | |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 849 | # This loop parses the command line arguments to find the |
| 850 | # subcommand name to dispatch. Parsing of the subcommand specific |
| 851 | # options are primarily done by the subcommand implementations. |
| 852 | # Subcommand specific options such as --branch and --cached are |
| 853 | # parsed here as well, for backward compatibility. |
| 854 | |
| 855 | while test $# != 0 && test -z "$command" |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 856 | do |
| 857 | case "$1" in |
David Aguilar | 2327f61 | 2008-08-24 12:43:37 -0700 | [diff] [blame] | 858 | add | foreach | init | update | status | summary | sync) |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 859 | command=$1 |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 860 | ;; |
| 861 | -q|--quiet) |
Stephen Boyd | 2e6a30e | 2009-06-16 15:33:00 -0700 | [diff] [blame] | 862 | GIT_QUIET=1 |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 863 | ;; |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 864 | -b|--branch) |
| 865 | case "$2" in |
| 866 | '') |
| 867 | usage |
| 868 | ;; |
| 869 | esac |
| 870 | branch="$2"; shift |
| 871 | ;; |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 872 | --cached) |
Ping Yin | 28f9af5 | 2008-03-11 21:52:15 +0800 | [diff] [blame] | 873 | cached="$1" |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 874 | ;; |
| 875 | --) |
| 876 | break |
| 877 | ;; |
| 878 | -*) |
| 879 | usage |
| 880 | ;; |
| 881 | *) |
| 882 | break |
| 883 | ;; |
| 884 | esac |
| 885 | shift |
| 886 | done |
| 887 | |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 888 | # No command word defaults to "status" |
| 889 | test -n "$command" || command=status |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 890 | |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 891 | # "-b branch" is accepted only by "add" |
| 892 | if test -n "$branch" && test "$command" != add |
| 893 | then |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 894 | usage |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 895 | fi |
| 896 | |
Ping Yin | 28f9af5 | 2008-03-11 21:52:15 +0800 | [diff] [blame] | 897 | # "--cached" is accepted only by "status" and "summary" |
| 898 | if test -n "$cached" && test "$command" != status -a "$command" != summary |
Junio C Hamano | 5c08dbb | 2008-01-15 02:48:45 -0800 | [diff] [blame] | 899 | then |
| 900 | usage |
| 901 | fi |
| 902 | |
| 903 | "cmd_$command" "$@" |