diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-06-11 21:12:23 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-06-12 01:06:21 -0700 |
commit | d57dd255a696cb68c880110a990085c08343f618 (patch) | |
tree | 6520ec1cbfd453b27f169fd7547c3e7c93b3e0bc /git-submodule.sh | |
parent | bf2d824660c976e0d0e773f9c5095a6abaf388ae (diff) | |
download | git-d57dd255a696cb68c880110a990085c08343f618.tar.gz |
Rename sections from "module" to "submodule" in .gitmodules
Rename [module] to [submodule], so that it would be more
forward compatible with the proposed extension by harmonizing
the section names used in .gitmodules and .git/config.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-submodule.sh')
-rwxr-xr-x | git-submodule.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-submodule.sh b/git-submodule.sh index 4a6d64d61c..6c83c52cf4 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -66,7 +66,7 @@ modules_init() url=$(git-config submodule."$path".url) test -z "$url" || continue - url=$(GIT_CONFIG=.gitmodules git-config module."$path".url) + url=$(GIT_CONFIG=.gitmodules git-config submodule."$path".url) test -z "$url" && die "No url found for submodule '$path' in .gitmodules" |