mirror of
https://git.proxmox.com/git/libgit2
synced 2026-08-26 15:20:44 +00:00
Rename remote creation APIs
git_remote_add -> git_remote_create git_remote_new -> git_remote_create_inmemory
This commit is contained in:
@@ -76,7 +76,7 @@ int fetch(git_repository *repo, int argc, char **argv)
|
||||
// Figure out whether it's a named remote or a URL
|
||||
printf("Fetching %s for repo %p\n", argv[1], repo);
|
||||
if (git_remote_load(&remote, repo, argv[1]) < 0) {
|
||||
if (git_remote_new(&remote, repo, NULL, argv[1], NULL) < 0)
|
||||
if (git_remote_create_inmemory(&remote, repo, NULL, argv[1], NULL) < 0)
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ static int use_unnamed(git_repository *repo, const char *url)
|
||||
|
||||
// Create an instance of a remote from the URL. The transport to use
|
||||
// is detected from the URL
|
||||
error = git_remote_new(&remote, repo, NULL, url, NULL);
|
||||
error = git_remote_create_inmemory(&remote, repo, NULL, url, NULL);
|
||||
if (error < 0)
|
||||
goto cleanup;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user