Package org.eclipse.egit.core.op

Examples of org.eclipse.egit.core.op.DeleteTagOperation.execute()


          final String tagName = tag.getObject().getName();
          final DeleteTagOperation op = new DeleteTagOperation(repo,
              tagName);
          monitor.subTask(tagName);
          try {
            op.execute(monitor);
          } catch (CoreException e) {
            Activator.logError(e.getLocalizedMessage(), e);
          }
          monitor.worked(1);
        }
View Full Code Here


  private void deleteTag(Repository repository, String tagName)
      throws CoreException {
    DeleteTagOperation operation = new DeleteTagOperation(repository,
        tagName);
    operation.execute(null);
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.