git_hooks 0.1.3-nullsafety.0 git_hooks: ^0.1.3-nullsafety.0 copied to clipboard
Using dart to prevents bad commit or push (git hooks, pre-commit/precommit, pre-push/prepush, post-merge/postmerge and all that stuff...).It is similar to husky.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate git_hooks
Use it
The package has the following executables:
$ git_hooks
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add git_hooks
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
git_hooks: ^0.1.3-nullsafety.0
Alternatively, your editor might support dart pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:git_hooks/git_hooks.dart';