Class GitUntagCommand
- java.lang.Object
-
- org.apache.maven.scm.command.AbstractCommand
-
- org.apache.maven.scm.command.untag.AbstractUntagCommand
-
- org.apache.maven.scm.provider.git.gitexe.command.untag.GitUntagCommand
-
- All Implemented Interfaces:
Command
,GitCommand
public class GitUntagCommand extends AbstractUntagCommand implements GitCommand
-
-
Constructor Summary
Constructors Constructor Description GitUntagCommand()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static org.codehaus.plexus.util.cli.Commandline
createCommandLine(GitScmProviderRepository repository, java.io.File workingDirectory, java.lang.String tag)
static org.codehaus.plexus.util.cli.Commandline
createPushCommandLine(GitScmProviderRepository repository, ScmFileSet fileSet, java.lang.String tag)
ScmResult
executeUntagCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmUntagParameters scmUntagParameters)
execute untag command-
Methods inherited from class org.apache.maven.scm.command.untag.AbstractUntagCommand
executeCommand
-
Methods inherited from class org.apache.maven.scm.command.AbstractCommand
execute, getLogger, setLogger
-
-
-
-
Method Detail
-
executeUntagCommand
public ScmResult executeUntagCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmUntagParameters scmUntagParameters) throws ScmException
execute untag command- Specified by:
executeUntagCommand
in classAbstractUntagCommand
- Parameters:
repo
- scm repofileSet
- set of files (unused)scmUntagParameters
- parameters used by untag implementations- Returns:
- result of untag command
- Throws:
ScmException
- in case of error
-
createCommandLine
public static org.codehaus.plexus.util.cli.Commandline createCommandLine(GitScmProviderRepository repository, java.io.File workingDirectory, java.lang.String tag)
-
createPushCommandLine
public static org.codehaus.plexus.util.cli.Commandline createPushCommandLine(GitScmProviderRepository repository, ScmFileSet fileSet, java.lang.String tag)
-
-