Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
ba64f50c
Unverified
Commit
ba64f50c
authored
Jan 08, 2020
by
Edward Thomson
Committed by
GitHub
Jan 08, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5322 from kdj0c/fix_sub_sync
Fix git_submodule_sync with relative url
parents
33f93bf3
11e8ee1f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
70 additions
and
56 deletions
+70
-56
src/submodule.c
+49
-56
tests/submodule/modify.c
+21
-0
No files found.
src/submodule.c
View file @
ba64f50c
...
...
@@ -1420,50 +1420,46 @@ cleanup:
int
git_submodule_sync
(
git_submodule
*
sm
)
{
int
error
=
0
;
git_config
*
cfg
=
NULL
;
git_buf
key
=
GIT_BUF_INIT
;
git_buf
key
=
GIT_BUF_INIT
,
url
=
GIT_BUF_INIT
,
remote_name
=
GIT_BUF_INIT
;
git_repository
*
smrepo
=
NULL
;
git_config
*
cfg
=
NULL
;
int
error
=
0
;
if
(
!
sm
->
url
)
{
git_error_set
(
GIT_ERROR_SUBMODULE
,
"no URL configured for submodule '%s'"
,
sm
->
name
);
git_error_set
(
GIT_ERROR_SUBMODULE
,
"no URL configured for submodule '%s'"
,
sm
->
name
);
return
-
1
;
}
/* copy URL over to config only if it already exists */
if
((
error
=
git_repository_config__weakptr
(
&
cfg
,
sm
->
repo
))
<
0
||
(
error
=
git_buf_printf
(
&
key
,
"submodule.%s.url"
,
sm
->
name
))
<
0
||
(
error
=
git_submodule_resolve_url
(
&
url
,
sm
->
repo
,
sm
->
url
))
<
0
||
(
error
=
git_config__update_entry
(
cfg
,
key
.
ptr
,
url
.
ptr
,
true
,
true
))
<
0
)
goto
out
;
if
(
!
(
error
=
git_repository_config__weakptr
(
&
cfg
,
sm
->
repo
))
&&
!
(
error
=
git_buf_printf
(
&
key
,
"submodule.%s.url"
,
sm
->
name
)))
error
=
git_config__update_entry
(
cfg
,
key
.
ptr
,
sm
->
url
,
true
,
true
);
if
(
!
(
sm
->
flags
&
GIT_SUBMODULE_STATUS_IN_WD
))
goto
out
;
/* if submodule exists in the working directory, update remote url */
if
((
error
=
git_submodule_open
(
&
smrepo
,
sm
))
<
0
||
(
error
=
git_repository_config__weakptr
(
&
cfg
,
smrepo
))
<
0
)
goto
out
;
if
(
!
error
&&
(
sm
->
flags
&
GIT_SUBMODULE_STATUS_IN_WD
)
!=
0
&&
!
(
error
=
git_submodule_open
(
&
smrepo
,
sm
)))
{
git_buf
remote_name
=
GIT_BUF_INIT
;
if
((
error
=
git_repository_config__weakptr
(
&
cfg
,
smrepo
))
<
0
)
/* return error from reading submodule config */
;
else
if
((
error
=
lookup_head_remote_key
(
&
remote_name
,
smrepo
))
<
0
)
{
git_error_clear
();
error
=
git_buf_sets
(
&
key
,
"remote.origin.url"
);
}
else
{
error
=
git_buf_join3
(
&
key
,
'.'
,
"remote"
,
remote_name
.
ptr
,
"url"
);
git_buf_dispose
(
&
remote_name
);
}
if
(
!
error
)
error
=
git_config__update_entry
(
cfg
,
key
.
ptr
,
sm
->
url
,
true
,
false
);
git_repository_free
(
smrepo
);
if
(
lookup_head_remote_key
(
&
remote_name
,
smrepo
)
==
0
)
{
if
((
error
=
git_buf_join3
(
&
key
,
'.'
,
"remote"
,
remote_name
.
ptr
,
"url"
))
<
0
)
goto
out
;
}
else
if
((
error
=
git_buf_sets
(
&
key
,
"remote.origin.url"
))
<
0
)
{
goto
out
;
}
git_buf_dispose
(
&
key
);
if
((
error
=
git_config__update_entry
(
cfg
,
key
.
ptr
,
url
.
ptr
,
true
,
false
))
<
0
)
goto
out
;
out:
git_repository_free
(
smrepo
);
git_buf_dispose
(
&
remote_name
);
git_buf_dispose
(
&
key
);
git_buf_dispose
(
&
url
);
return
error
;
}
...
...
@@ -1606,43 +1602,40 @@ static int submodule_update_head(git_submodule *submodule)
int
git_submodule_reload
(
git_submodule
*
sm
,
int
force
)
{
int
error
=
0
,
isvalid
;
git_config
*
mods
;
git_config
*
mods
=
NULL
;
int
error
;
GIT_UNUSED
(
force
);
assert
(
sm
);
isvalid
=
git_submodule_name_is_valid
(
sm
->
repo
,
sm
->
name
,
0
);
if
(
isvalid
<=
0
)
{
if
((
error
=
git_submodule_name_is_valid
(
sm
->
repo
,
sm
->
name
,
0
))
<=
0
)
/* This should come with a warning, but we've no API for that */
return
isvalid
;
}
goto
out
;
if
(
!
git_repository_is_bare
(
sm
->
repo
))
{
/* refresh config data */
if
((
error
=
gitmodules_snapshot
(
&
mods
,
sm
->
repo
))
<
0
&&
error
!=
GIT_ENOTFOUND
)
return
error
;
if
(
mods
!=
NULL
)
{
error
=
submodule_read_config
(
sm
,
mods
);
git_config_free
(
mods
);
if
(
git_repository_is_bare
(
sm
->
repo
))
goto
out
;
if
(
error
<
0
)
return
error
;
}
/* refresh config data */
if
((
error
=
gitmodules_snapshot
(
&
mods
,
sm
->
repo
))
<
0
&&
error
!=
GIT_ENOTFOUND
)
goto
out
;
/* refresh wd data */
sm
->
flags
&=
~
(
GIT_SUBMODULE_STATUS_IN_WD
|
GIT_SUBMODULE_STATUS__WD_OID_VALID
|
GIT_SUBMODULE_STATUS__WD_FLAGS
);
if
(
mods
!=
NULL
&&
(
error
=
submodule_read_config
(
sm
,
mods
))
<
0
)
goto
out
;
error
=
submodule_load_from_wd_lite
(
sm
);
}
/* refresh wd data */
sm
->
flags
&=
~
(
GIT_SUBMODULE_STATUS_IN_WD
|
GIT_SUBMODULE_STATUS__WD_OID_VALID
|
GIT_SUBMODULE_STATUS__WD_FLAGS
);
if
(
error
==
0
&&
(
error
=
submodule_update_index
(
sm
))
==
0
)
error
=
submodule_update_head
(
sm
);
if
((
error
=
submodule_load_from_wd_lite
(
sm
))
<
0
||
(
error
=
submodule_update_index
(
sm
))
<
0
||
(
error
=
submodule_update_head
(
sm
))
<
0
)
goto
out
;
out:
git_config_free
(
mods
);
return
error
;
}
...
...
@@ -2168,7 +2161,7 @@ static int lookup_default_remote(git_remote **remote, git_repository *repo)
int
error
=
lookup_head_remote
(
remote
,
repo
);
/* if that failed, use 'origin' instead */
if
(
error
==
GIT_ENOTFOUND
)
if
(
error
==
GIT_ENOTFOUND
||
error
==
GIT_EUNBORNBRANCH
)
error
=
git_remote_lookup
(
remote
,
repo
,
"origin"
);
if
(
error
==
GIT_ENOTFOUND
)
...
...
tests/submodule/modify.c
View file @
ba64f50c
...
...
@@ -210,3 +210,24 @@ void test_submodule_modify__set_url(void)
cl_assert_equal_s
(
SM_LIBGIT2_URL
,
git_submodule_url
(
sm
));
git_submodule_free
(
sm
);
}
void
test_submodule_modify__set_relative_url
(
void
)
{
git_buf
path
=
GIT_BUF_INIT
;
git_repository
*
repo
;
git_submodule
*
sm
;
cl_git_pass
(
git_submodule_set_url
(
g_repo
,
SM1
,
"../relative-url"
));
cl_git_pass
(
git_submodule_lookup
(
&
sm
,
g_repo
,
SM1
));
cl_git_pass
(
git_submodule_sync
(
sm
));
cl_git_pass
(
git_submodule_open
(
&
repo
,
sm
));
cl_git_pass
(
git_buf_joinpath
(
&
path
,
clar_sandbox_path
(),
"relative-url"
));
assert_config_entry_value
(
g_repo
,
"submodule."
SM1
".url"
,
path
.
ptr
);
assert_config_entry_value
(
repo
,
"remote.origin.url"
,
path
.
ptr
);
git_repository_free
(
repo
);
git_submodule_free
(
sm
);
git_buf_dispose
(
&
path
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment