feat: prototype config api

This commit is contained in:
Aleksey Kulikov 2021-06-02 20:44:58 +03:00
parent 0fe3fa9f23
commit 1c6c5579d7
5 changed files with 253 additions and 1 deletions

View file

@ -0,0 +1,8 @@
import 'dart:io';
import 'package:libgit2dart/libgit2dart.dart';
void main() {
final repo = Repository.open(Directory.current.path);
print('Path to git repository: ${repo.path}');
}