deleteGitTag method

void deleteGitTag(
  1. Version newVersion
)

Implementation

void deleteGitTag(Version newVersion) {
  assert(_usingGit == true);
  'git tag -d $newVersion'.run;
  // 'git push origin :refs/tags/$newVersion'.run;
  'git push --follow-tags'.run;
}