diff options
author | Mark Levedahl <mdl123@verizon.net> | 2007-09-23 22:19:42 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-25 00:31:12 -0700 |
commit | f31a522a2d64a5c7d83047e9234e1722ef63985e (patch) | |
tree | 215a391b0da588203277d7e1960a05ed651107c2 /Documentation/git-submodule.txt | |
parent | 41ef95aea7c8d8a337af693b601511e099cc468f (diff) | |
download | git-f31a522a2d64a5c7d83047e9234e1722ef63985e.tar.gz |
git-submodule - allow a relative path as the subproject url
This allows a subproject's location to be specified and stored as relative
to the parent project's location (e.g., ./foo, or ../foo). This url is
stored in .gitmodules as given. It is resolved into an absolute url by
appending it to the parent project's url when the information is written
to .git/config (i.e., during submodule add for the originator, and
submodule init for a downstream recipient). This allows cloning of the
project to work "as expected" if the project is hosted on a different
server than when the subprojects were added.
Signed-off-by: Mark Levedahl <mdl123@verizon.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-submodule.txt')
-rw-r--r-- | Documentation/git-submodule.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/git-submodule.txt b/Documentation/git-submodule.txt index 2c48936fcd..335e973a6a 100644 --- a/Documentation/git-submodule.txt +++ b/Documentation/git-submodule.txt @@ -21,6 +21,9 @@ add:: repository is cloned at the specified path, added to the changeset and registered in .gitmodules. If no path is specified, the path is deduced from the repository specification. + If the repository url begins with ./ or ../, it is stored as + given but resolved as a relative path from the main project's + url when cloning. status:: Show the status of the submodules. This will print the SHA-1 of the |