mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-05 20:11:17 +00:00
Merge pull request #1783 from libgit2/cmn/relax-remote
remote: relax the url rules
This commit is contained in:
commit
9d1751bf6e
@ -272,12 +272,6 @@ int git_remote_load(git_remote **out, git_repository *repo, const char *name)
|
||||
if ((error = git_config_get_string(&val, config, git_buf_cstr(&buf))) < 0)
|
||||
goto cleanup;
|
||||
|
||||
if (strlen(val) == 0) {
|
||||
giterr_set(GITERR_INVALID, "Malformed remote '%s' - missing URL", name);
|
||||
error = -1;
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
remote->repo = repo;
|
||||
remote->url = git__strdup(val);
|
||||
GITERR_CHECK_ALLOC(remote->url);
|
||||
|
@ -361,13 +361,15 @@ void test_network_remote_remotes__tagopt(void)
|
||||
git_config_free(cfg);
|
||||
}
|
||||
|
||||
void test_network_remote_remotes__cannot_load_with_an_empty_url(void)
|
||||
void test_network_remote_remotes__can_load_with_an_empty_url(void)
|
||||
{
|
||||
git_remote *remote = NULL;
|
||||
|
||||
cl_git_fail(git_remote_load(&remote, _repo, "empty-remote-url"));
|
||||
cl_assert(giterr_last()->klass == GITERR_INVALID);
|
||||
cl_assert_equal_p(remote, NULL);
|
||||
cl_git_pass(git_remote_load(&remote, _repo, "empty-remote-url"));
|
||||
|
||||
cl_git_fail(git_remote_connect(remote, GIT_DIRECTION_FETCH));
|
||||
|
||||
git_remote_free(remote);
|
||||
}
|
||||
|
||||
void test_network_remote_remotes__check_structure_version(void)
|
||||
|
Loading…
Reference in New Issue
Block a user