git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git-submodule.sh - Remove trailing / from URL if found
@ 2008-08-20  2:18 Mark Levedahl
  2008-08-20  4:07 ` Junio C Hamano
  0 siblings, 1 reply; 7+ messages in thread
From: Mark Levedahl @ 2008-08-20  2:18 UTC (permalink / raw)
  To: git; +Cc: Mark Levedahl

git clone does not complain if a trailing '/' is included in the origin
URL, but doing so causes resolution of a submodule's URL relative to the
superproject to fail. Regardless of whether git is changed to remove the
trailing / before recording the URL, we should avoid this issue in
submodule as existing repositories can have this problem.

Signed-off-by: Mark Levedahl <mlevedahl@gmail.com>
---
 git-submodule.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/git-submodule.sh b/git-submodule.sh
index ea6357b..fa9dd3a 100755
--- a/git-submodule.sh
+++ b/git-submodule.sh
@@ -34,7 +34,7 @@ resolve_relative_url ()
 	remote=$(get_default_remote)
 	remoteurl=$(git config "remote.$remote.url") ||
 		die "remote ($remote) does not have a url in .git/config"
-	url="$1"
+	url="${1%/}"
 	while test -n "$url"
 	do
 		case "$url" in
-- 
1.6.0.22.g2957

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-08-21 23:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-20  2:18 [PATCH] git-submodule.sh - Remove trailing / from URL if found Mark Levedahl
2008-08-20  4:07 ` Junio C Hamano
2008-08-21  1:07   ` Mark Levedahl
2008-08-21  3:26     ` Junio C Hamano
2008-08-21 12:04       ` Mark Levedahl
2008-08-21 18:00         ` Junio C Hamano
2008-08-21 23:54           ` Mark Levedahl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).