mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 04:39:07 -04:00
test(credentials): use https instead of git
Github removed support of the unauthenticated git protocol.
This commit is contained in:
parent
f872612f36
commit
6bdf133f06
1 changed files with 2 additions and 2 deletions
|
@ -105,7 +105,7 @@ void main() {
|
||||||
final callbacks = Callbacks(credentials: keypair);
|
final callbacks = Callbacks(credentials: keypair);
|
||||||
|
|
||||||
final repo = Repository.clone(
|
final repo = Repository.clone(
|
||||||
url: 'git://github.com/libgit2/TestGitRepository',
|
url: 'https://github.com/libgit2/TestGitRepository',
|
||||||
localPath: cloneDir.path,
|
localPath: cloneDir.path,
|
||||||
callbacks: callbacks,
|
callbacks: callbacks,
|
||||||
);
|
);
|
||||||
|
@ -195,7 +195,7 @@ void main() {
|
||||||
final callbacks = Callbacks(credentials: keypair);
|
final callbacks = Callbacks(credentials: keypair);
|
||||||
|
|
||||||
final repo = Repository.clone(
|
final repo = Repository.clone(
|
||||||
url: 'git://github.com/libgit2/TestGitRepository',
|
url: 'https://github.com/libgit2/TestGitRepository',
|
||||||
localPath: cloneDir.path,
|
localPath: cloneDir.path,
|
||||||
callbacks: callbacks,
|
callbacks: callbacks,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue