CommitCommand |
Git.commit() |
Returns a command object to execute a Commit command
|
CommitCommand |
CommitCommand.setAll(boolean all) |
If set to true the Commit command automatically stages files that have
been modified and deleted, but new files not known by the repository are
not affected.
|
CommitCommand |
CommitCommand.setAmend(boolean amend) |
Used to amend the tip of the current branch.
|
CommitCommand |
CommitCommand.setAuthor(java.lang.String name,
java.lang.String email) |
Sets the author for this commit .
|
CommitCommand |
CommitCommand.setAuthor(PersonIdent author) |
Sets the author for this commit .
|
CommitCommand |
CommitCommand.setCommitter(java.lang.String name,
java.lang.String email) |
Sets the committer for this commit .
|
CommitCommand |
CommitCommand.setCommitter(PersonIdent committer) |
Sets the committer for this commit .
|
CommitCommand |
CommitCommand.setHookOutputStream(java.io.PrintStream hookStdOut) |
Set the output stream for hook scripts executed by this command.
|
CommitCommand |
CommitCommand.setInsertChangeId(boolean insertChangeId) |
If set to true a change id will be inserted into the commit message
An existing change id is not replaced.
|
CommitCommand |
CommitCommand.setMessage(java.lang.String message) |
|
CommitCommand |
CommitCommand.setNoVerify(boolean noVerify) |
Sets the noVerify option on this commit command.
|
CommitCommand |
CommitCommand.setOnly(java.lang.String only) |
Commit dedicated path only.
|
CommitCommand |
CommitCommand.setReflogComment(java.lang.String reflogComment) |
Override the message written to the reflog
|