get method
Reads repo URL from pubspec.yaml and returns the cider diff template'
Implementation
@override
Future<String> get({
required Directory directory,
required GgLog ggLog,
}) async {
final repoUrl = await _repoUrl.get(directory: directory);
final repoUrlWithoutGit = repoUrl.replaceAll(RegExp(r'\.git$'), '');
return '$repoUrlWithoutGit/compare/%from%...%to%';
}