mirror of
https://github.com/git/git.git
synced 2024-11-23 18:05:29 +08:00
Fix submodule sync with relative submodule URLs
Signed-off-by: Johan Herland <johan@herland.net> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
parent
064bfbde45
commit
baede9f803
@ -634,6 +634,14 @@ cmd_sync()
|
||||
do
|
||||
name=$(module_name "$path")
|
||||
url=$(git config -f .gitmodules --get submodule."$name".url)
|
||||
|
||||
# Possibly a url relative to parent
|
||||
case "$url" in
|
||||
./*|../*)
|
||||
url=$(resolve_relative_url "$url") || exit
|
||||
;;
|
||||
esac
|
||||
|
||||
if test -e "$path"/.git
|
||||
then
|
||||
(
|
||||
|
Loading…
Reference in New Issue
Block a user