This series ensures that git submodule handles relative superproject origin URLs correctly. Current behaviour: * does not guarantee that the submodule.{name}.url property of the superproject is always confgured with a valid path to the submodule's origin repo that is relative to the working tree of the superproject. * does not guarantee that the remote.origin.url property of the submodule is always configured with a valid path to the submodule's origin repo that is relative to the working tree of the submodule * errors out (origin URL = foo) even though this is not strictly necessary. These changes: * guarantee that the configured paths are always valid relative paths from the working tree of the repo containing to the configuration to the origin repo of the described submodule. Jon Seymour (2): submodule: document failures handling relative superproject origin URLs submodule: fix handling of relative superproject origin URLs git-submodule.sh | 57 +++++++++++++++++++++++++++++++++---- t/t7400-submodule-basic.sh | 60 +++++++++++++++++++++++++++++++++++++++ t/t7403-submodule-sync.sh | 70 +++++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 180 insertions(+), 7 deletions(-) v4->v5 changes: Used test_expect_failure for failing tests. Added comments to justify statements. Isolated changes to the relative branch. Used role-based variable names to help explain transformations. -- 1.7.10.2.649.g5ca7d80 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html