Example usage for org.eclipse.jgit.api GitCommand subclass-usage

List of usage examples for org.eclipse.jgit.api GitCommand subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jgit.api GitCommand subclass-usage.

Usage

From source file bluej.groupwork.git.GitCloneCommand.java

/**
 * Clone a remote repository into a local directory.
 * @author Fabio Hedayioglu
 */
public class GitCloneCommand extends GitCommand {

From source file bluej.groupwork.git.GitStatusCommand.java

/**
 * Checks the status of a Git repository
 *
 * @author Fabio Hedayioglu
 */
public class GitStatusCommand extends GitCommand {

From source file com.mangosolutions.rcloud.rawgist.repository.git.BareAddCommand.java

/**
 * Command that adds contents to a bare repository.
 * This is based upon the JGit AddCommand
 *
 */
public class BareAddCommand extends GitCommand<DirCache> {

From source file com.mangosolutions.rcloud.rawgist.repository.git.BareCommitCommand.java

/**
 * Commits changes to a a bare git repository. This is
 * based upon the JGit CommitCommand
 *
 */
public class BareCommitCommand extends GitCommand<RevCommit> {

From source file com.mangosolutions.rcloud.rawgist.repository.git.BareRmCommand.java

/**
 * Removes files from the bare git repository. This is based
 * upon the JGit RmCommand.
 */
public class BareRmCommand extends GitCommand<DirCache> {

From source file org.craftercms.studio.impl.v1.util.git.CherryPickCommandEx.java

/**
 * A class used to execute a {@code cherry-pick} command. It has setters for all
 * supported options and arguments of this command and a {@link #call()} method
 * to finally execute the command. Each instance of this class should only be
 * used for one invocation of the command (means: one call to {@link #call()})
 *

From source file org.eclipse.orion.server.gerritfs.DiffCommand.java

/**
 * Show changes between commits, commit and working tree, etc.
 *
 * @see <a href="http://www.kernel.org/pub/software/scm/git/docs/git-diff.html" >Git documentation about diff</a>
 */
public class DiffCommand extends GitCommand<List<DiffEntry>> {

From source file org.eclipse.orion.server.git.jobs.DiffCommand.java

/**
 * Show changes between commits, commit and working tree, etc.
 *
 * @see <a href="http://www.kernel.org/pub/software/scm/git/docs/git-diff.html" >Git documentation about diff</a>
 */
public class DiffCommand extends GitCommand<List<DiffEntry>> {

From source file org.eclipse.orion.server.git.jobs.LogCommand.java

/**
 * A class used to execute a {@code Log} command. It has setters for all supported options and arguments of this command and a {@link #call()} method to finally
 * execute the command. Each instance of this class should only be used for one invocation of the command (means: one call to {@link #call()})
 * <p>
 * Examples (<code>git</code> is a {@link Git} instance):
 * <p>

From source file org.eclipse.orion.server.git.jobs.StashApplyCommand.java

/**
 * Command class to apply a stashed commit.
 *
 * This class behaves like <em>git stash apply --index</em>, i.e. it tries to recover the stashed index state in addition to the working tree state.
 *
 * @see <a href="http://www.kernel.org/pub/software/scm/git/docs/git-stash.html" >Git documentation about Stash</a>