From 1eae309723be301a4f2fc12a3e07e7e7c9f30782 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Tue, 7 Jan 2014 10:15:14 +0100 Subject: Allow programmatic remote configuration for PullCommand Also imply remoteBranchName to match current branch name if it wasn't configured in branch configuration. Bug: 424812 Change-Id: Id852cedaefb2a537b6aa3c330b9861efad052f11 Signed-off-by: Matthias Sohn --- .../src/org/eclipse/jgit/api/PullCommand.java | 84 +++++++++++++++++----- 1 file changed, 68 insertions(+), 16 deletions(-) (limited to 'org.eclipse.jgit/src/org/eclipse') diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/PullCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/PullCommand.java index 4c935095c3..c157f14fce 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/PullCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/PullCommand.java @@ -82,6 +82,10 @@ public class PullCommand extends TransportCommand { private PullRebaseMode pullRebaseMode = PullRebaseMode.USE_CONFIG; + private String remote; + + private String remoteBranchName; + private enum PullRebaseMode { USE_CONFIG, REBASE, @@ -177,21 +181,24 @@ public class PullCommand extends TransportCommand { JGitText.get().cannotPullOnARepoWithState, repo .getRepositoryState().name())); - // get the configured remote for the currently checked out branch - // stored in configuration key branch..remote Config repoConfig = repo.getConfig(); - String remote = repoConfig.getString( - ConfigConstants.CONFIG_BRANCH_SECTION, branchName, - ConfigConstants.CONFIG_KEY_REMOTE); + if (remote == null) { + // get the configured remote for the currently checked out branch + // stored in configuration key branch..remote + remote = repoConfig.getString( + ConfigConstants.CONFIG_BRANCH_SECTION, branchName, + ConfigConstants.CONFIG_KEY_REMOTE); + } if (remote == null) // fall back to default remote remote = Constants.DEFAULT_REMOTE_NAME; - // get the name of the branch in the remote repository - // stored in configuration key branch..merge - String remoteBranchName = repoConfig.getString( - ConfigConstants.CONFIG_BRANCH_SECTION, branchName, - ConfigConstants.CONFIG_KEY_MERGE); + if (remoteBranchName == null) + // get the name of the branch in the remote repository + // stored in configuration key branch..merge + remoteBranchName = repoConfig.getString( + ConfigConstants.CONFIG_BRANCH_SECTION, branchName, + ConfigConstants.CONFIG_KEY_MERGE); // determines whether rebase should be used after fetching boolean doRebase = false; @@ -211,12 +218,8 @@ public class PullCommand extends TransportCommand { break; } - if (remoteBranchName == null) { - String missingKey = ConfigConstants.CONFIG_BRANCH_SECTION + DOT - + branchName + DOT + ConfigConstants.CONFIG_KEY_MERGE; - throw new InvalidConfigurationException(MessageFormat.format( - JGitText.get().missingConfigurationForKey, missingKey)); - } + if (remoteBranchName == null) + remoteBranchName = branchName; final boolean isRemote = !remote.equals("."); //$NON-NLS-1$ String remoteUri; @@ -309,4 +312,53 @@ public class PullCommand extends TransportCommand { return result; } + /** + * The remote (uri or name) to be used for the pull operation. If no remote + * is set, the branch's configuration will be used. If the branch + * configuration is missing the default value of + * Constants.DEFAULT_REMOTE_NAME will be used. + * + * @see Constants#DEFAULT_REMOTE_NAME + * @param remote + * @return {@code this} + * @since 3.3 + */ + public PullCommand setRemote(String remote) { + checkCallable(); + this.remote = remote; + return this; + } + + /** + * The remote branch name to be used for the pull operation. If no + * remoteBranchName is set, the branch's configuration will be used. If the + * branch configuration is missing the remote branch with the same name as + * the current branch is used. + * + * @param remoteBranchName + * @return {@code this} + * @since 3.3 + */ + public PullCommand setRemoteBranchName(String remoteBranchName) { + checkCallable(); + this.remoteBranchName = remoteBranchName; + return this; + } + + /** + * @return the remote used for the pull operation if it was set explicitly + * @since 3.3 + */ + public String getRemote() { + return remote; + } + + /** + * @return the remote branch name used for the pull operation if it was set + * explicitly + * @since 3.3 + */ + public String getRemoteBranchName() { + return remoteBranchName; + } } -- cgit v1.2.3