Skip to content

Commit fed09b0

Browse files
committed
GitAsyncBindings: Properly implement push
1 parent e59eae3 commit fed09b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/go_git_dart_async.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ Future<SendPort> _helperIsolateSendPort = () async {
230230
if (data is _PushRequest) {
231231
try {
232232
var repo = GitBindings(data.libPath);
233-
repo.fetch(
233+
repo.push(
234234
data.remote, data.directory, data.pemBytes, data.password);
235235
sendPort.send(_PushResponse(data.id, null));
236236
} on Exception catch (e) {

0 commit comments

Comments
 (0)