fetch method

  1. @override
Future<List<CommitInfo>> fetch()

Main method to fetch all the git information and generate the changelog from the source.

Implementation

@override
Future<List<CommitInfo>> fetch() {
  /// TODO run the git cmd to get the version
  return Future.value([]);
}