git 2.2.1 copy "git: ^2.2.1" to clipboard
git: ^2.2.1 copied to clipboard

Git command line wrapper. Exposes a Git directory abstraction that makes it easy to inspect and manipulate a local Git repository.

Pub Package CI

Exposes a Git directory abstraction that makes it easy to inspect and manipulate a local Git repository.

import 'package:git/git.dart';
import 'package:path/path.dart' as p;

Future<void> main() async {
  print('Current directory: ${p.current}');

  if (await GitDir.isGitDir(p.current)) {
    final gitDir = await GitDir.fromExisting(p.current);
    final commitCount = await gitDir.commitCount();
    print('Git commit count: $commitCount');
  } else {
    print('Not a Git directory');
  }
}
44
likes
140
pub points
99%
popularity

Publisher

verified publisherj832.com

Git command line wrapper. Exposes a Git directory abstraction that makes it easy to inspect and manipulate a local Git repository.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-2-Clause (LICENSE)

Dependencies

path

More

Packages that depend on git