push method

void push()

Implementation

void push() {
  assert(_usingGit == true);
  print('Pushing release to git...');
  'git push'.run;
}