Class GitDiffCommand
java.lang.Object
org.apache.maven.scm.command.AbstractCommand
org.apache.maven.scm.command.diff.AbstractDiffCommand
org.apache.maven.scm.provider.git.gitexe.command.diff.GitDiffCommand
- All Implemented Interfaces:
Command,GitCommand
- Author:
- Mark Struberg
-
Field Summary
Fields inherited from class org.apache.maven.scm.command.AbstractCommand
logger -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic org.codehaus.plexus.util.cli.CommandlinecreateCommandLine(File workingDirectory, ScmVersion startVersion, ScmVersion endVersion, boolean cached) static org.codehaus.plexus.util.cli.CommandlinecreateDiffRawCommandLine(File workingDirectory, String sha1) Create a CommandLine for executing a git diff --raw command.protected DiffScmResultexecuteDiffCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion) Methods inherited from class org.apache.maven.scm.command.diff.AbstractDiffCommand
executeCommandMethods inherited from class org.apache.maven.scm.command.AbstractCommand
execute
-
Constructor Details
-
GitDiffCommand
public GitDiffCommand()
-
-
Method Details
-
executeDiffCommand
protected DiffScmResult executeDiffCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion) throws ScmException - Specified by:
executeDiffCommandin classAbstractDiffCommand- Throws:
ScmException
-
createCommandLine
public static org.codehaus.plexus.util.cli.Commandline createCommandLine(File workingDirectory, ScmVersion startVersion, ScmVersion endVersion, boolean cached) - Parameters:
cached- iftruediff the index to the head, else diff the tree to the index
-
createDiffRawCommandLine
public static org.codehaus.plexus.util.cli.Commandline createDiffRawCommandLine(File workingDirectory, String sha1) Create a CommandLine for executing a git diff --raw command. This will output all affected files affected since the given commit and the current version.- Parameters:
workingDirectory-
-