* [PATCH 1/1] git-submodule.sh: fix relative paths with ssh urls
@ 2010-12-03 2:53 Russell Yanofsky
0 siblings, 0 replies; only message in thread
From: Russell Yanofsky @ 2010-12-03 2:53 UTC (permalink / raw)
To: git; +Cc: Russell Yanofsky
Fix handling of submodule urls starting with ../ when the remote url is
an scp-style URL with the format user@host.xz:repo.git. For example, if
the remote url is user@host.xz:repo.git and the submodule URL is
../submodule.git, the combined default URL will now be
user@host.xz:submodule.git instead of
user@host.xz:repo.git/submodule.git.
---
git-submodule.sh | 16 ++++++++++++++--
1 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/git-submodule.sh b/git-submodule.sh
index c291eed..533cf5d 100755
--- a/git-submodule.sh
+++ b/git-submodule.sh
@@ -36,13 +36,25 @@ resolve_relative_url ()
remoteurl=$(git config "remote.$remote.url") ||
die "remote ($remote) does not have a url defined in .git/config"
url="$1"
+ sep="/"
remoteurl=${remoteurl%/}
while test -n "$url"
do
case "$url" in
../*)
url="${url#../}"
- remoteurl="${remoteurl%/*}"
+ remoteparent="${remoteurl%/*}"
+ if test "$remoteparent" != "$remoteurl"
+ then
+ remoteurl="$remoteparent"
+ else
+ remoteparent="${remoteurl%:*}"
+ if test "$remoteparent" != "$remoteurl"
+ then
+ remoteurl="$remoteparent"
+ sep=":"
+ fi
+ fi
;;
./*)
url="${url#./}"
@@ -51,7 +63,7 @@ resolve_relative_url ()
break;;
esac
done
- echo "$remoteurl/${url%/}"
+ echo "$remoteurl$sep${url%/}"
}
#
--
1.7.3.2
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2010-12-03 3:02 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-03 2:53 [PATCH 1/1] git-submodule.sh: fix relative paths with ssh urls Russell Yanofsky
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).