├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── no-response.yml │ └── publish.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example └── example.dart ├── lib ├── git.dart └── src │ ├── bot.dart │ ├── branch_reference.dart │ ├── commit.dart │ ├── commit_reference.dart │ ├── git_dir.dart │ ├── git_error.dart │ ├── tag.dart │ ├── top_level.dart │ ├── tree_entry.dart │ └── util.dart ├── pubspec.yaml └── test ├── git_dir_test.dart ├── git_test.dart ├── parse_test.dart ├── readme_test.dart ├── tag_test.dart └── test_utils.dart /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/.github/workflows/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/example/example.dart -------------------------------------------------------------------------------- /lib/git.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/lib/git.dart -------------------------------------------------------------------------------- /lib/src/bot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/lib/src/bot.dart -------------------------------------------------------------------------------- /lib/src/branch_reference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/lib/src/branch_reference.dart -------------------------------------------------------------------------------- /lib/src/commit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/lib/src/commit.dart -------------------------------------------------------------------------------- /lib/src/commit_reference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/lib/src/commit_reference.dart -------------------------------------------------------------------------------- /lib/src/git_dir.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/lib/src/git_dir.dart -------------------------------------------------------------------------------- /lib/src/git_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/lib/src/git_error.dart -------------------------------------------------------------------------------- /lib/src/tag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/lib/src/tag.dart -------------------------------------------------------------------------------- /lib/src/top_level.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/lib/src/top_level.dart -------------------------------------------------------------------------------- /lib/src/tree_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/lib/src/tree_entry.dart -------------------------------------------------------------------------------- /lib/src/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/lib/src/util.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/git_dir_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/test/git_dir_test.dart -------------------------------------------------------------------------------- /test/git_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/test/git_test.dart -------------------------------------------------------------------------------- /test/parse_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/test/parse_test.dart -------------------------------------------------------------------------------- /test/readme_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/test/readme_test.dart -------------------------------------------------------------------------------- /test/tag_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/test/tag_test.dart -------------------------------------------------------------------------------- /test/test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/git/HEAD/test/test_utils.dart --------------------------------------------------------------------------------