mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-21 18:03:54 +00:00
remote: add git_remote_add()
Helper function to create a remote with the default settings
This commit is contained in:
parent
3df9cc5922
commit
a209a025c6
@ -218,6 +218,16 @@ GIT_EXTERN(int) git_remote_supported_url(const char* url);
|
|||||||
*/
|
*/
|
||||||
GIT_EXTERN(int) git_remote_list(git_strarray *remotes_list, git_repository *repo);
|
GIT_EXTERN(int) git_remote_list(git_strarray *remotes_list, git_repository *repo);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add a remote with the default fetch refspec to the repository's configuration
|
||||||
|
*
|
||||||
|
* @param out the resulting remote
|
||||||
|
* @param repo the repository in which to create the remote
|
||||||
|
* @param name the remote's name
|
||||||
|
* @param url the remote's url
|
||||||
|
*/
|
||||||
|
GIT_EXTERN(int) git_remote_add(git_remote **out, git_repository *repo, const char *name, const char *url);
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
||||||
GIT_END_DECL
|
GIT_END_DECL
|
||||||
#endif
|
#endif
|
||||||
|
25
src/remote.c
25
src/remote.c
@ -476,3 +476,28 @@ int git_remote_list(git_strarray *remotes_list, git_repository *repo)
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int git_remote_add(git_remote **out, git_repository *repo, const char *name, const char *url)
|
||||||
|
{
|
||||||
|
git_buf buf = GIT_BUF_INIT;
|
||||||
|
if (git_remote_new(out, repo, url, name) < 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
if (git_buf_printf(&buf, "refs/heads/*:refs/remotes/%s/*", name) < 0)
|
||||||
|
goto on_error;
|
||||||
|
|
||||||
|
if (git_remote_set_fetchspec(*out, git_buf_cstr(&buf)) < 0)
|
||||||
|
goto on_error;
|
||||||
|
|
||||||
|
git_buf_free(&buf);
|
||||||
|
|
||||||
|
if (git_remote_save(*out) < 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
on_error:
|
||||||
|
git_buf_free(&buf);
|
||||||
|
git_remote_free(*out);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
@ -158,3 +158,15 @@ void test_network_remotes__loading_a_missing_remote_returns_ENOTFOUND(void)
|
|||||||
{
|
{
|
||||||
cl_assert_equal_i(GIT_ENOTFOUND, git_remote_load(&_remote, _repo, "just-left-few-minutes-ago"));
|
cl_assert_equal_i(GIT_ENOTFOUND, git_remote_load(&_remote, _repo, "just-left-few-minutes-ago"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void test_network_remotes__add(void)
|
||||||
|
{
|
||||||
|
git_remote_free(_remote);
|
||||||
|
cl_git_pass(git_remote_add(&_remote, _repo, "addtest", "http://github.com/libgit2/libgit2"));
|
||||||
|
git_remote_free(_remote);
|
||||||
|
|
||||||
|
cl_git_pass(git_remote_load(&_remote, _repo, "addtest"));
|
||||||
|
_refspec = git_remote_fetchspec(_remote);
|
||||||
|
cl_assert(!strcmp(git_refspec_src(_refspec), "refs/heads/*"));
|
||||||
|
cl_assert(!strcmp(git_refspec_dst(_refspec), "refs/remotes/addtest/*"));
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user