2007-05-26 15:56:40 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2007-06-24 23:06:07 +02:00
|
|
|
# git-submodules.sh: add, init, update or list git submodules
|
2007-05-26 15:56:40 +02:00
|
|
|
#
|
|
|
|
# Copyright (c) 2007 Lars Hjemli
|
|
|
|
|
2008-03-11 14:52:17 +01:00
|
|
|
USAGE="[--quiet] [--cached] \
|
git-submodule - make "submodule add" more strict, and document it
This change makes "submodule add" much more strict in the arguments it
takes, and is intended to address confusion as recently noted on the
git-list. With this change, the required syntax is:
$ git submodule add URL path
Specifically, this eliminates the form
$ git submodule add URL
which was confused by more than one person as
$ git submodule add path
With this patch, the URL locating the submodule's origin repository can be
either an absolute URL, or (if it begins with ./ or ../) can express the
submodule's repository location relative to the superproject's origin.
This patch also eliminates a third form of URL, which was relative to the
superproject's top-level directory (not its repository). Any URL that was
neither absolute nor matched ./*|../* was assumed to point to a
subdirectory of the superproject as the location of the submodule's origin
repository. This URL form was confusing and does not seem to correspond
to an important use-case. Specifically, no-one has identified the need to
clone from a repository already in the superproject's tree, but if this is
needed it is easily done using an absolute URL: $(pwd)/relative-path. So,
no functionality is lost with this patch. (t6008-rev-list-submodule.sh did
rely upon this relative URL, fixed by using $(pwd).)
Following this change, there are exactly four variants of
submodule-add, as both arguments have two flavors:
URL can be absolute, or can begin with ./|../ and thus names the
submodule's origin relative to the superproject's origin.
Note: With this patch, "submodule add" discerns an absolute URL as
matching /*|*:*: e.g., URL begins with /, or it contains a :. This works
for all valid URLs, an absolute path in POSIX, as well as an absolute path
on Windows).
path can either already exist as a valid git repo, or will be cloned from
the given URL. The first form here eases creation of a new submodule in
an existing superproject as the submodule can be added and tested in-tree
before pushing to the public repository. However, the more usual form is
the second, where the repo is cloned from the given URL.
This specifically addresses the issue of
$ git submodule add a/b/c
attempting to clone from a repository at "a/b/c" to create a new module
in "c". This also simplifies description of "relative URL" as there is now
exactly *one* form: a URL relative to the parent's origin repo.
Signed-off-by: Mark Levedahl <mlevedahl@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-07-10 03:05:40 +02:00
|
|
|
[add <repo> [-b branch] <path>]|[status|init|update [-i|--init]|summary [-n|--summary-limit <n>] [<commit>]] \
|
2008-03-11 14:52:17 +01:00
|
|
|
[--] [<path>...]"
|
2007-11-06 10:50:02 +01:00
|
|
|
OPTIONS_SPEC=
|
2007-05-26 15:56:40 +02:00
|
|
|
. git-sh-setup
|
|
|
|
require_work_tree
|
|
|
|
|
2008-01-15 11:48:45 +01:00
|
|
|
command=
|
2007-06-24 23:06:07 +02:00
|
|
|
branch=
|
2007-05-26 15:56:40 +02:00
|
|
|
quiet=
|
|
|
|
cached=
|
|
|
|
|
|
|
|
#
|
|
|
|
# print stuff on stdout unless -q was specified
|
|
|
|
#
|
|
|
|
say()
|
|
|
|
{
|
|
|
|
if test -z "$quiet"
|
|
|
|
then
|
|
|
|
echo "$@"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2007-09-24 04:19:42 +02:00
|
|
|
# Resolve relative url by appending to parent's url
|
|
|
|
resolve_relative_url ()
|
|
|
|
{
|
|
|
|
branch="$(git symbolic-ref HEAD 2>/dev/null)"
|
|
|
|
remote="$(git config branch.${branch#refs/heads/}.remote)"
|
|
|
|
remote="${remote:-origin}"
|
2008-06-14 19:09:41 +02:00
|
|
|
remoteurl=$(git config "remote.$remote.url") ||
|
|
|
|
die "remote ($remote) does not have a url defined in .git/config"
|
2007-09-24 04:19:42 +02:00
|
|
|
url="$1"
|
|
|
|
while test -n "$url"
|
|
|
|
do
|
|
|
|
case "$url" in
|
|
|
|
../*)
|
|
|
|
url="${url#../}"
|
|
|
|
remoteurl="${remoteurl%/*}"
|
|
|
|
;;
|
|
|
|
./*)
|
|
|
|
url="${url#./}"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
echo "$remoteurl/$url"
|
|
|
|
}
|
|
|
|
|
2007-06-11 21:12:24 +02:00
|
|
|
#
|
|
|
|
# Map submodule path to submodule name
|
|
|
|
#
|
|
|
|
# $1 = path
|
|
|
|
#
|
|
|
|
module_name()
|
|
|
|
{
|
2007-07-26 00:51:26 +02:00
|
|
|
# Do we have "submodule.<something>.path = $1" defined in .gitmodules file?
|
2008-06-11 15:09:19 +02:00
|
|
|
re=$(printf '%s\n' "$1" | sed -e 's/[].[^$\\*]/\\&/g')
|
2008-05-15 09:42:58 +02:00
|
|
|
name=$( git config -f .gitmodules --get-regexp '^submodule\..*\.path$' |
|
2007-07-26 00:51:26 +02:00
|
|
|
sed -n -e 's|^submodule\.\(.*\)\.path '"$re"'$|\1|p' )
|
2007-06-11 21:12:24 +02:00
|
|
|
test -z "$name" &&
|
|
|
|
die "No submodule mapping found in .gitmodules for path '$path'"
|
|
|
|
echo "$name"
|
|
|
|
}
|
2007-06-06 11:13:01 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Clone a submodule
|
|
|
|
#
|
2008-01-15 11:35:49 +01:00
|
|
|
# Prior to calling, cmd_update checks that a possibly existing
|
2007-06-24 23:06:07 +02:00
|
|
|
# path is not a git repository.
|
2008-01-15 11:35:49 +01:00
|
|
|
# Likewise, cmd_add checks that path does not exist at all,
|
2007-06-24 23:06:07 +02:00
|
|
|
# since it is the location of a new submodule.
|
|
|
|
#
|
2007-06-06 11:13:01 +02:00
|
|
|
module_clone()
|
|
|
|
{
|
|
|
|
path=$1
|
|
|
|
url=$2
|
|
|
|
|
|
|
|
# If there already is a directory at the submodule path,
|
|
|
|
# expect it to be empty (since that is the default checkout
|
|
|
|
# action) and try to remove it.
|
|
|
|
# Note: if $path is a symlink to a directory the test will
|
|
|
|
# succeed but the rmdir will fail. We might want to fix this.
|
|
|
|
if test -d "$path"
|
|
|
|
then
|
|
|
|
rmdir "$path" 2>/dev/null ||
|
|
|
|
die "Directory '$path' exist, but is neither empty nor a git repository"
|
|
|
|
fi
|
|
|
|
|
|
|
|
test -e "$path" &&
|
|
|
|
die "A file already exist at path '$path'"
|
|
|
|
|
|
|
|
git-clone -n "$url" "$path" ||
|
2007-06-11 21:12:24 +02:00
|
|
|
die "Clone of '$url' into submodule path '$path' failed"
|
2007-06-06 11:13:01 +02:00
|
|
|
}
|
|
|
|
|
2007-06-24 23:06:07 +02:00
|
|
|
#
|
|
|
|
# Add a new submodule to the working tree, .gitmodules and the index
|
|
|
|
#
|
git-submodule - make "submodule add" more strict, and document it
This change makes "submodule add" much more strict in the arguments it
takes, and is intended to address confusion as recently noted on the
git-list. With this change, the required syntax is:
$ git submodule add URL path
Specifically, this eliminates the form
$ git submodule add URL
which was confused by more than one person as
$ git submodule add path
With this patch, the URL locating the submodule's origin repository can be
either an absolute URL, or (if it begins with ./ or ../) can express the
submodule's repository location relative to the superproject's origin.
This patch also eliminates a third form of URL, which was relative to the
superproject's top-level directory (not its repository). Any URL that was
neither absolute nor matched ./*|../* was assumed to point to a
subdirectory of the superproject as the location of the submodule's origin
repository. This URL form was confusing and does not seem to correspond
to an important use-case. Specifically, no-one has identified the need to
clone from a repository already in the superproject's tree, but if this is
needed it is easily done using an absolute URL: $(pwd)/relative-path. So,
no functionality is lost with this patch. (t6008-rev-list-submodule.sh did
rely upon this relative URL, fixed by using $(pwd).)
Following this change, there are exactly four variants of
submodule-add, as both arguments have two flavors:
URL can be absolute, or can begin with ./|../ and thus names the
submodule's origin relative to the superproject's origin.
Note: With this patch, "submodule add" discerns an absolute URL as
matching /*|*:*: e.g., URL begins with /, or it contains a :. This works
for all valid URLs, an absolute path in POSIX, as well as an absolute path
on Windows).
path can either already exist as a valid git repo, or will be cloned from
the given URL. The first form here eases creation of a new submodule in
an existing superproject as the submodule can be added and tested in-tree
before pushing to the public repository. However, the more usual form is
the second, where the repo is cloned from the given URL.
This specifically addresses the issue of
$ git submodule add a/b/c
attempting to clone from a repository at "a/b/c" to create a new module
in "c". This also simplifies description of "relative URL" as there is now
exactly *one* form: a URL relative to the parent's origin repo.
Signed-off-by: Mark Levedahl <mlevedahl@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-07-10 03:05:40 +02:00
|
|
|
# $@ = repo path
|
2007-06-24 23:06:07 +02:00
|
|
|
#
|
|
|
|
# optional branch is stored in global branch variable
|
|
|
|
#
|
2008-01-15 11:35:49 +01:00
|
|
|
cmd_add()
|
2007-06-24 23:06:07 +02:00
|
|
|
{
|
2008-01-15 11:48:45 +01:00
|
|
|
# parse $args after "submodule ... add".
|
|
|
|
while test $# -ne 0
|
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
-b | --branch)
|
|
|
|
case "$2" in '') usage ;; esac
|
|
|
|
branch=$2
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-q|--quiet)
|
|
|
|
quiet=1
|
|
|
|
;;
|
|
|
|
--)
|
|
|
|
shift
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
-*)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2007-06-24 23:06:07 +02:00
|
|
|
repo=$1
|
|
|
|
path=$2
|
|
|
|
|
git-submodule - make "submodule add" more strict, and document it
This change makes "submodule add" much more strict in the arguments it
takes, and is intended to address confusion as recently noted on the
git-list. With this change, the required syntax is:
$ git submodule add URL path
Specifically, this eliminates the form
$ git submodule add URL
which was confused by more than one person as
$ git submodule add path
With this patch, the URL locating the submodule's origin repository can be
either an absolute URL, or (if it begins with ./ or ../) can express the
submodule's repository location relative to the superproject's origin.
This patch also eliminates a third form of URL, which was relative to the
superproject's top-level directory (not its repository). Any URL that was
neither absolute nor matched ./*|../* was assumed to point to a
subdirectory of the superproject as the location of the submodule's origin
repository. This URL form was confusing and does not seem to correspond
to an important use-case. Specifically, no-one has identified the need to
clone from a repository already in the superproject's tree, but if this is
needed it is easily done using an absolute URL: $(pwd)/relative-path. So,
no functionality is lost with this patch. (t6008-rev-list-submodule.sh did
rely upon this relative URL, fixed by using $(pwd).)
Following this change, there are exactly four variants of
submodule-add, as both arguments have two flavors:
URL can be absolute, or can begin with ./|../ and thus names the
submodule's origin relative to the superproject's origin.
Note: With this patch, "submodule add" discerns an absolute URL as
matching /*|*:*: e.g., URL begins with /, or it contains a :. This works
for all valid URLs, an absolute path in POSIX, as well as an absolute path
on Windows).
path can either already exist as a valid git repo, or will be cloned from
the given URL. The first form here eases creation of a new submodule in
an existing superproject as the submodule can be added and tested in-tree
before pushing to the public repository. However, the more usual form is
the second, where the repo is cloned from the given URL.
This specifically addresses the issue of
$ git submodule add a/b/c
attempting to clone from a repository at "a/b/c" to create a new module
in "c". This also simplifies description of "relative URL" as there is now
exactly *one* form: a URL relative to the parent's origin repo.
Signed-off-by: Mark Levedahl <mlevedahl@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-07-10 03:05:40 +02:00
|
|
|
if test -z "$repo" -o -z "$path"; then
|
2007-06-24 23:06:07 +02:00
|
|
|
usage
|
|
|
|
fi
|
|
|
|
|
git-submodule - make "submodule add" more strict, and document it
This change makes "submodule add" much more strict in the arguments it
takes, and is intended to address confusion as recently noted on the
git-list. With this change, the required syntax is:
$ git submodule add URL path
Specifically, this eliminates the form
$ git submodule add URL
which was confused by more than one person as
$ git submodule add path
With this patch, the URL locating the submodule's origin repository can be
either an absolute URL, or (if it begins with ./ or ../) can express the
submodule's repository location relative to the superproject's origin.
This patch also eliminates a third form of URL, which was relative to the
superproject's top-level directory (not its repository). Any URL that was
neither absolute nor matched ./*|../* was assumed to point to a
subdirectory of the superproject as the location of the submodule's origin
repository. This URL form was confusing and does not seem to correspond
to an important use-case. Specifically, no-one has identified the need to
clone from a repository already in the superproject's tree, but if this is
needed it is easily done using an absolute URL: $(pwd)/relative-path. So,
no functionality is lost with this patch. (t6008-rev-list-submodule.sh did
rely upon this relative URL, fixed by using $(pwd).)
Following this change, there are exactly four variants of
submodule-add, as both arguments have two flavors:
URL can be absolute, or can begin with ./|../ and thus names the
submodule's origin relative to the superproject's origin.
Note: With this patch, "submodule add" discerns an absolute URL as
matching /*|*:*: e.g., URL begins with /, or it contains a :. This works
for all valid URLs, an absolute path in POSIX, as well as an absolute path
on Windows).
path can either already exist as a valid git repo, or will be cloned from
the given URL. The first form here eases creation of a new submodule in
an existing superproject as the submodule can be added and tested in-tree
before pushing to the public repository. However, the more usual form is
the second, where the repo is cloned from the given URL.
This specifically addresses the issue of
$ git submodule add a/b/c
attempting to clone from a repository at "a/b/c" to create a new module
in "c". This also simplifies description of "relative URL" as there is now
exactly *one* form: a URL relative to the parent's origin repo.
Signed-off-by: Mark Levedahl <mlevedahl@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-07-10 03:05:40 +02:00
|
|
|
# assure repo is absolute or relative to parent
|
|
|
|
case "$repo" in
|
|
|
|
./*|../*)
|
|
|
|
# dereference source url relative to parent's url
|
|
|
|
realrepo=$(resolve_relative_url "$repo") || exit
|
|
|
|
;;
|
|
|
|
*:*|/*)
|
|
|
|
# absolute url
|
|
|
|
realrepo=$repo
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
die "repo URL: '$repo' must be absolute or begin with ./|../"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# strip trailing slashes from path
|
|
|
|
path=$(echo "$path" | sed -e 's|/*$||')
|
2007-06-24 23:06:07 +02:00
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
git ls-files --error-unmatch "$path" > /dev/null 2>&1 &&
|
2007-06-24 23:06:07 +02:00
|
|
|
die "'$path' already exists in the index"
|
|
|
|
|
2008-03-05 02:15:02 +01:00
|
|
|
# perhaps the path exists and is already a git repo, else clone it
|
|
|
|
if test -e "$path"
|
|
|
|
then
|
2008-07-08 04:36:40 +02:00
|
|
|
if test -d "$path"/.git -o -f "$path"/.git
|
2008-03-05 02:15:02 +01:00
|
|
|
then
|
|
|
|
echo "Adding existing repo at '$path' to the index"
|
|
|
|
else
|
|
|
|
die "'$path' already exists and is not a valid git repo"
|
|
|
|
fi
|
2008-07-10 03:05:41 +02:00
|
|
|
|
|
|
|
case "$repo" in
|
|
|
|
./*|../*)
|
|
|
|
url=$(resolve_relative_url "$repo") || exit
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
url="$repo"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
git config submodule."$path".url "$url"
|
2008-03-05 02:15:02 +01:00
|
|
|
else
|
|
|
|
|
|
|
|
module_clone "$path" "$realrepo" || exit
|
|
|
|
(unset GIT_DIR; cd "$path" && git checkout -q ${branch:+-b "$branch" "origin/$branch"}) ||
|
|
|
|
die "Unable to checkout submodule '$path'"
|
|
|
|
fi
|
|
|
|
|
2007-06-24 23:06:07 +02:00
|
|
|
git add "$path" ||
|
|
|
|
die "Failed to add submodule '$path'"
|
|
|
|
|
2008-05-15 09:42:58 +02:00
|
|
|
git config -f .gitmodules submodule."$path".path "$path" &&
|
|
|
|
git config -f .gitmodules submodule."$path".url "$repo" &&
|
2007-06-24 23:06:07 +02:00
|
|
|
git add .gitmodules ||
|
|
|
|
die "Failed to register submodule '$path'"
|
|
|
|
}
|
|
|
|
|
2007-05-26 15:56:40 +02:00
|
|
|
#
|
2007-06-06 11:13:02 +02:00
|
|
|
# Register submodules in .git/config
|
2007-05-26 15:56:40 +02:00
|
|
|
#
|
|
|
|
# $@ = requested paths (default to all)
|
|
|
|
#
|
2008-01-15 11:35:49 +01:00
|
|
|
cmd_init()
|
2007-05-26 15:56:40 +02:00
|
|
|
{
|
2008-01-15 11:48:45 +01:00
|
|
|
# parse $args after "submodule ... init".
|
|
|
|
while test $# -ne 0
|
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
-q|--quiet)
|
|
|
|
quiet=1
|
|
|
|
;;
|
|
|
|
--)
|
|
|
|
shift
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
-*)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2008-03-12 22:32:17 +01:00
|
|
|
git ls-files --stage -- "$@" | grep '^160000 ' |
|
2007-05-26 15:56:40 +02:00
|
|
|
while read mode sha1 stage path
|
|
|
|
do
|
2007-06-06 11:13:02 +02:00
|
|
|
# Skip already registered paths
|
2007-06-11 21:12:24 +02:00
|
|
|
name=$(module_name "$path") || exit
|
2007-07-03 07:52:14 +02:00
|
|
|
url=$(git config submodule."$name".url)
|
2007-06-06 11:13:02 +02:00
|
|
|
test -z "$url" || continue
|
2007-05-26 15:56:40 +02:00
|
|
|
|
2008-05-15 09:42:58 +02:00
|
|
|
url=$(git config -f .gitmodules submodule."$name".url)
|
2007-05-26 15:56:40 +02:00
|
|
|
test -z "$url" &&
|
2007-06-11 21:12:24 +02:00
|
|
|
die "No url found for submodule path '$path' in .gitmodules"
|
2007-05-26 15:56:40 +02:00
|
|
|
|
2007-09-24 04:19:42 +02:00
|
|
|
# Possibly a url relative to parent
|
|
|
|
case "$url" in
|
|
|
|
./*|../*)
|
2008-06-14 19:09:41 +02:00
|
|
|
url=$(resolve_relative_url "$url") || exit
|
2007-09-24 04:19:42 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
git config submodule."$name".url "$url" ||
|
2007-06-11 21:12:24 +02:00
|
|
|
die "Failed to register url for submodule path '$path'"
|
2007-05-26 15:56:40 +02:00
|
|
|
|
2007-06-11 21:12:24 +02:00
|
|
|
say "Submodule '$name' ($url) registered for path '$path'"
|
2007-05-26 15:56:40 +02:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
2007-06-06 11:13:02 +02:00
|
|
|
# Update each submodule path to correct revision, using clone and checkout as needed
|
2007-05-26 15:56:40 +02:00
|
|
|
#
|
|
|
|
# $@ = requested paths (default to all)
|
|
|
|
#
|
2008-01-15 11:35:49 +01:00
|
|
|
cmd_update()
|
2007-05-26 15:56:40 +02:00
|
|
|
{
|
2008-01-15 11:48:45 +01:00
|
|
|
# parse $args after "submodule ... update".
|
|
|
|
while test $# -ne 0
|
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
-q|--quiet)
|
|
|
|
quiet=1
|
|
|
|
;;
|
2008-05-16 12:23:03 +02:00
|
|
|
-i|--init)
|
|
|
|
shift
|
|
|
|
cmd_init "$@" || return
|
|
|
|
;;
|
2008-01-15 11:48:45 +01:00
|
|
|
--)
|
|
|
|
shift
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
-*)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2008-03-12 22:32:17 +01:00
|
|
|
git ls-files --stage -- "$@" | grep '^160000 ' |
|
2007-05-26 15:56:40 +02:00
|
|
|
while read mode sha1 stage path
|
|
|
|
do
|
2007-06-11 21:12:24 +02:00
|
|
|
name=$(module_name "$path") || exit
|
2007-07-03 07:52:14 +02:00
|
|
|
url=$(git config submodule."$name".url)
|
2007-06-06 11:13:02 +02:00
|
|
|
if test -z "$url"
|
2007-05-26 15:56:40 +02:00
|
|
|
then
|
|
|
|
# Only mention uninitialized submodules when its
|
|
|
|
# path have been specified
|
|
|
|
test "$#" != "0" &&
|
2007-06-11 21:12:24 +02:00
|
|
|
say "Submodule path '$path' not initialized"
|
2008-05-16 12:23:03 +02:00
|
|
|
say "Maybe you want to use 'update --init'?"
|
2007-06-06 11:13:02 +02:00
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
2008-02-20 23:13:15 +01:00
|
|
|
if ! test -d "$path"/.git -o -f "$path"/.git
|
2007-06-06 11:13:02 +02:00
|
|
|
then
|
|
|
|
module_clone "$path" "$url" || exit
|
2007-06-11 21:12:22 +02:00
|
|
|
subsha1=
|
|
|
|
else
|
2007-12-04 23:45:16 +01:00
|
|
|
subsha1=$(unset GIT_DIR; cd "$path" &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git rev-parse --verify HEAD) ||
|
2007-06-11 21:12:24 +02:00
|
|
|
die "Unable to find current revision in submodule path '$path'"
|
2007-05-26 15:56:40 +02:00
|
|
|
fi
|
2007-06-06 11:13:02 +02:00
|
|
|
|
2007-05-26 15:56:40 +02:00
|
|
|
if test "$subsha1" != "$sha1"
|
|
|
|
then
|
2007-12-04 23:45:16 +01:00
|
|
|
(unset GIT_DIR; cd "$path" && git-fetch &&
|
2007-05-26 15:56:40 +02:00
|
|
|
git-checkout -q "$sha1") ||
|
2007-06-11 21:12:24 +02:00
|
|
|
die "Unable to checkout '$sha1' in submodule path '$path'"
|
2007-05-26 15:56:40 +02:00
|
|
|
|
2007-06-11 21:12:24 +02:00
|
|
|
say "Submodule path '$path': checked out '$sha1'"
|
2007-05-26 15:56:40 +02:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2007-06-27 01:40:58 +02:00
|
|
|
set_name_rev () {
|
|
|
|
revname=$( (
|
2007-12-04 23:45:16 +01:00
|
|
|
unset GIT_DIR
|
2007-06-27 01:40:58 +02:00
|
|
|
cd "$1" && {
|
2007-07-03 07:52:14 +02:00
|
|
|
git describe "$2" 2>/dev/null ||
|
|
|
|
git describe --tags "$2" 2>/dev/null ||
|
2008-04-15 04:48:06 +02:00
|
|
|
git describe --contains "$2" 2>/dev/null ||
|
|
|
|
git describe --all --always "$2"
|
2007-06-27 01:40:58 +02:00
|
|
|
}
|
|
|
|
) )
|
|
|
|
test -z "$revname" || revname=" ($revname)"
|
|
|
|
}
|
2008-03-11 14:52:15 +01:00
|
|
|
#
|
|
|
|
# Show commit summary for submodules in index or working tree
|
|
|
|
#
|
|
|
|
# If '--cached' is given, show summary between index and given commit,
|
|
|
|
# or between working tree and given commit
|
|
|
|
#
|
|
|
|
# $@ = [commit (default 'HEAD'),] requested paths (default all)
|
|
|
|
#
|
|
|
|
cmd_summary() {
|
2008-03-11 14:52:17 +01:00
|
|
|
summary_limit=-1
|
2008-04-12 17:05:31 +02:00
|
|
|
for_status=
|
2008-03-11 14:52:17 +01:00
|
|
|
|
2008-03-11 14:52:15 +01:00
|
|
|
# parse $args after "submodule ... summary".
|
|
|
|
while test $# -ne 0
|
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
--cached)
|
|
|
|
cached="$1"
|
|
|
|
;;
|
2008-04-12 17:05:31 +02:00
|
|
|
--for-status)
|
|
|
|
for_status="$1"
|
|
|
|
;;
|
2008-03-11 14:52:17 +01:00
|
|
|
-n|--summary-limit)
|
|
|
|
if summary_limit=$(($2 + 0)) 2>/dev/null && test "$summary_limit" = "$2"
|
|
|
|
then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
usage
|
|
|
|
fi
|
|
|
|
shift
|
|
|
|
;;
|
2008-03-11 14:52:15 +01:00
|
|
|
--)
|
|
|
|
shift
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
-*)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
2007-06-27 01:40:58 +02:00
|
|
|
|
2008-03-11 14:52:17 +01:00
|
|
|
test $summary_limit = 0 && return
|
|
|
|
|
2008-03-11 14:52:15 +01:00
|
|
|
if rev=$(git rev-parse --verify "$1^0" 2>/dev/null)
|
|
|
|
then
|
|
|
|
head=$rev
|
|
|
|
shift
|
|
|
|
else
|
|
|
|
head=HEAD
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd_to_toplevel
|
|
|
|
# Get modified modules cared by user
|
|
|
|
modules=$(git diff-index $cached --raw $head -- "$@" |
|
|
|
|
grep -e '^:160000' -e '^:[0-7]* 160000' |
|
|
|
|
while read mod_src mod_dst sha1_src sha1_dst status name
|
|
|
|
do
|
|
|
|
# Always show modules deleted or type-changed (blob<->module)
|
|
|
|
test $status = D -o $status = T && echo "$name" && continue
|
|
|
|
# Also show added or modified modules which are checked out
|
|
|
|
GIT_DIR="$name/.git" git-rev-parse --git-dir >/dev/null 2>&1 &&
|
|
|
|
echo "$name"
|
|
|
|
done
|
|
|
|
)
|
2008-03-11 14:52:16 +01:00
|
|
|
|
2008-04-12 17:05:31 +02:00
|
|
|
test -z "$modules" && return
|
|
|
|
|
2008-03-11 14:52:16 +01:00
|
|
|
git diff-index $cached --raw $head -- $modules |
|
|
|
|
grep -e '^:160000' -e '^:[0-7]* 160000' |
|
|
|
|
cut -c2- |
|
|
|
|
while read mod_src mod_dst sha1_src sha1_dst status name
|
|
|
|
do
|
|
|
|
if test -z "$cached" &&
|
|
|
|
test $sha1_dst = 0000000000000000000000000000000000000000
|
|
|
|
then
|
|
|
|
case "$mod_dst" in
|
|
|
|
160000)
|
|
|
|
sha1_dst=$(GIT_DIR="$name/.git" git rev-parse HEAD)
|
|
|
|
;;
|
|
|
|
100644 | 100755 | 120000)
|
|
|
|
sha1_dst=$(git hash-object $name)
|
|
|
|
;;
|
|
|
|
000000)
|
|
|
|
;; # removed
|
|
|
|
*)
|
|
|
|
# unexpected type
|
|
|
|
echo >&2 "unexpected mode $mod_dst"
|
|
|
|
continue ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
missing_src=
|
|
|
|
missing_dst=
|
|
|
|
|
|
|
|
test $mod_src = 160000 &&
|
|
|
|
! GIT_DIR="$name/.git" git-rev-parse --verify $sha1_src^0 >/dev/null 2>&1 &&
|
|
|
|
missing_src=t
|
|
|
|
|
|
|
|
test $mod_dst = 160000 &&
|
|
|
|
! GIT_DIR="$name/.git" git-rev-parse --verify $sha1_dst^0 >/dev/null 2>&1 &&
|
|
|
|
missing_dst=t
|
2007-06-27 01:40:58 +02:00
|
|
|
|
2008-03-11 14:52:16 +01:00
|
|
|
total_commits=
|
|
|
|
case "$missing_src,$missing_dst" in
|
|
|
|
t,)
|
|
|
|
errmsg=" Warn: $name doesn't contain commit $sha1_src"
|
|
|
|
;;
|
|
|
|
,t)
|
|
|
|
errmsg=" Warn: $name doesn't contain commit $sha1_dst"
|
|
|
|
;;
|
|
|
|
t,t)
|
|
|
|
errmsg=" Warn: $name doesn't contain commits $sha1_src and $sha1_dst"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
errmsg=
|
|
|
|
total_commits=$(
|
|
|
|
if test $mod_src = 160000 -a $mod_dst = 160000
|
|
|
|
then
|
|
|
|
range="$sha1_src...$sha1_dst"
|
|
|
|
elif test $mod_src = 160000
|
|
|
|
then
|
|
|
|
range=$sha1_src
|
|
|
|
else
|
|
|
|
range=$sha1_dst
|
|
|
|
fi
|
|
|
|
GIT_DIR="$name/.git" \
|
|
|
|
git log --pretty=oneline --first-parent $range | wc -l
|
|
|
|
)
|
2008-03-12 09:30:01 +01:00
|
|
|
total_commits=" ($(($total_commits + 0)))"
|
2008-03-11 14:52:16 +01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
sha1_abbr_src=$(echo $sha1_src | cut -c1-7)
|
|
|
|
sha1_abbr_dst=$(echo $sha1_dst | cut -c1-7)
|
|
|
|
if test $status = T
|
|
|
|
then
|
|
|
|
if test $mod_dst = 160000
|
|
|
|
then
|
|
|
|
echo "* $name $sha1_abbr_src(blob)->$sha1_abbr_dst(submodule)$total_commits:"
|
|
|
|
else
|
|
|
|
echo "* $name $sha1_abbr_src(submodule)->$sha1_abbr_dst(blob)$total_commits:"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "* $name $sha1_abbr_src...$sha1_abbr_dst$total_commits:"
|
|
|
|
fi
|
|
|
|
if test -n "$errmsg"
|
|
|
|
then
|
|
|
|
# Don't give error msg for modification whose dst is not submodule
|
|
|
|
# i.e. deleted or changed to blob
|
|
|
|
test $mod_dst = 160000 && echo "$errmsg"
|
|
|
|
else
|
|
|
|
if test $mod_src = 160000 -a $mod_dst = 160000
|
|
|
|
then
|
2008-03-11 14:52:17 +01:00
|
|
|
limit=
|
|
|
|
test $summary_limit -gt 0 && limit="-$summary_limit"
|
2008-03-11 14:52:16 +01:00
|
|
|
GIT_DIR="$name/.git" \
|
2008-03-11 14:52:17 +01:00
|
|
|
git log $limit --pretty='format: %m %s' \
|
2008-03-11 14:52:16 +01:00
|
|
|
--first-parent $sha1_src...$sha1_dst
|
|
|
|
elif test $mod_dst = 160000
|
|
|
|
then
|
|
|
|
GIT_DIR="$name/.git" \
|
|
|
|
git log --pretty='format: > %s' -1 $sha1_dst
|
|
|
|
else
|
|
|
|
GIT_DIR="$name/.git" \
|
|
|
|
git log --pretty='format: < %s' -1 $sha1_src
|
|
|
|
fi
|
|
|
|
echo
|
|
|
|
fi
|
|
|
|
echo
|
2008-04-12 17:05:31 +02:00
|
|
|
done |
|
|
|
|
if test -n "$for_status"; then
|
|
|
|
echo "# Modified submodules:"
|
|
|
|
echo "#"
|
|
|
|
sed -e 's|^|# |' -e 's|^# $|#|'
|
|
|
|
else
|
|
|
|
cat
|
|
|
|
fi
|
2008-03-11 14:52:15 +01:00
|
|
|
}
|
2007-05-26 15:56:40 +02:00
|
|
|
#
|
2007-06-11 21:12:24 +02:00
|
|
|
# List all submodules, prefixed with:
|
2007-05-26 15:56:40 +02:00
|
|
|
# - submodule not initialized
|
|
|
|
# + different revision checked out
|
|
|
|
#
|
|
|
|
# If --cached was specified the revision in the index will be printed
|
|
|
|
# instead of the currently checked out revision.
|
|
|
|
#
|
|
|
|
# $@ = requested paths (default to all)
|
|
|
|
#
|
2008-01-15 11:35:49 +01:00
|
|
|
cmd_status()
|
2007-05-26 15:56:40 +02:00
|
|
|
{
|
2008-01-15 11:48:45 +01:00
|
|
|
# parse $args after "submodule ... status".
|
|
|
|
while test $# -ne 0
|
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
-q|--quiet)
|
|
|
|
quiet=1
|
|
|
|
;;
|
|
|
|
--cached)
|
|
|
|
cached=1
|
|
|
|
;;
|
|
|
|
--)
|
|
|
|
shift
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
-*)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2008-03-12 22:32:17 +01:00
|
|
|
git ls-files --stage -- "$@" | grep '^160000 ' |
|
2007-05-26 15:56:40 +02:00
|
|
|
while read mode sha1 stage path
|
|
|
|
do
|
2007-06-11 21:12:24 +02:00
|
|
|
name=$(module_name "$path") || exit
|
2007-07-03 07:52:14 +02:00
|
|
|
url=$(git config submodule."$name".url)
|
2008-02-20 23:13:15 +01:00
|
|
|
if test -z "$url" || ! test -d "$path"/.git -o -f "$path"/.git
|
2007-05-26 15:56:40 +02:00
|
|
|
then
|
|
|
|
say "-$sha1 $path"
|
|
|
|
continue;
|
|
|
|
fi
|
2007-07-04 18:22:14 +02:00
|
|
|
set_name_rev "$path" "$sha1"
|
2007-05-26 15:56:40 +02:00
|
|
|
if git diff-files --quiet -- "$path"
|
|
|
|
then
|
2007-06-27 01:40:58 +02:00
|
|
|
say " $sha1 $path$revname"
|
2007-05-26 15:56:40 +02:00
|
|
|
else
|
|
|
|
if test -z "$cached"
|
|
|
|
then
|
2007-12-04 23:45:16 +01:00
|
|
|
sha1=$(unset GIT_DIR; cd "$path" && git rev-parse --verify HEAD)
|
2007-07-04 18:22:14 +02:00
|
|
|
set_name_rev "$path" "$sha1"
|
2007-05-26 15:56:40 +02:00
|
|
|
fi
|
2007-06-27 01:40:58 +02:00
|
|
|
say "+$sha1 $path$revname"
|
2007-05-26 15:56:40 +02:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2008-01-15 11:48:45 +01:00
|
|
|
# This loop parses the command line arguments to find the
|
|
|
|
# subcommand name to dispatch. Parsing of the subcommand specific
|
|
|
|
# options are primarily done by the subcommand implementations.
|
|
|
|
# Subcommand specific options such as --branch and --cached are
|
|
|
|
# parsed here as well, for backward compatibility.
|
|
|
|
|
|
|
|
while test $# != 0 && test -z "$command"
|
2007-05-26 15:56:40 +02:00
|
|
|
do
|
|
|
|
case "$1" in
|
2008-03-11 14:52:15 +01:00
|
|
|
add | init | update | status | summary)
|
2008-01-15 11:48:45 +01:00
|
|
|
command=$1
|
2007-05-26 15:56:40 +02:00
|
|
|
;;
|
|
|
|
-q|--quiet)
|
|
|
|
quiet=1
|
|
|
|
;;
|
2007-06-24 23:06:07 +02:00
|
|
|
-b|--branch)
|
|
|
|
case "$2" in
|
|
|
|
'')
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
branch="$2"; shift
|
|
|
|
;;
|
2007-05-26 15:56:40 +02:00
|
|
|
--cached)
|
2008-03-11 14:52:15 +01:00
|
|
|
cached="$1"
|
2007-05-26 15:56:40 +02:00
|
|
|
;;
|
|
|
|
--)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
-*)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2008-01-15 11:48:45 +01:00
|
|
|
# No command word defaults to "status"
|
|
|
|
test -n "$command" || command=status
|
|
|
|
|
|
|
|
# "-b branch" is accepted only by "add"
|
|
|
|
if test -n "$branch" && test "$command" != add
|
|
|
|
then
|
2007-06-24 23:06:07 +02:00
|
|
|
usage
|
2008-01-15 11:48:45 +01:00
|
|
|
fi
|
|
|
|
|
2008-03-11 14:52:15 +01:00
|
|
|
# "--cached" is accepted only by "status" and "summary"
|
|
|
|
if test -n "$cached" && test "$command" != status -a "$command" != summary
|
2008-01-15 11:48:45 +01:00
|
|
|
then
|
2007-05-26 15:56:40 +02:00
|
|
|
usage
|
2008-01-15 11:48:45 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
"cmd_$command" "$@"
|