diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2022-01-10 21:25:05 -0500 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2022-01-10 22:15:47 -0500 |
commit | 3f944f233964dbb5b52b9c119254a518d721ba95 (patch) | |
tree | eda6f6fbb49f462fe24a2e0f5b642a701ac70059 /tests/online/remotes.c | |
parent | e2e3f3e4cde7871f86eabacc6a639439b70a8fc7 (diff) | |
download | libgit2-ethomson/test_https.tar.gz |
online: test with https instead of git protocolethomson/test_https
GitHub is removing support for the unauthenticated git protocol; test
with the https protocol.
Diffstat (limited to 'tests/online/remotes.c')
-rw-r--r-- | tests/online/remotes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/online/remotes.c b/tests/online/remotes.c index f7fe4142f..887874d92 100644 --- a/tests/online/remotes.c +++ b/tests/online/remotes.c @@ -1,6 +1,6 @@ #include "clar_libgit2.h" -#define URL "git://github.com/libgit2/TestGitRepository" +#define URL "https://github.com/libgit2/TestGitRepository" #define REFSPEC "refs/heads/first-merge:refs/remotes/origin/first-merge" static int remote_single_branch(git_remote **out, git_repository *repo, const char *name, const char *url, void *payload) |