Setup the default remote and merge config in CloneCommand
Bug: 336621
Change-Id: I8c889d7b42f6f121d096acad1fada8e3752d74f9
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/CloneCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/CloneCommand.java
index 87a7c30..b0837e5 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/api/CloneCommand.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/CloneCommand.java
@@ -53,6 +53,7 @@
import org.eclipse.jgit.dircache.DirCacheCheckout;
import org.eclipse.jgit.errors.IncorrectObjectTypeException;
import org.eclipse.jgit.errors.MissingObjectException;
+import org.eclipse.jgit.lib.ConfigConstants;
import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.NullProgressMonitor;
import org.eclipse.jgit.lib.ProgressMonitor;
@@ -69,7 +70,7 @@
/**
* Clone a repository into a new working directory
- *
+ *
* @see <a href="http://www.kernel.org/pub/software/scm/git/docs/git-clone.html"
* >Git documentation about Clone</a>
*/
@@ -136,6 +137,12 @@ private FetchResult fetch(Repository repo, URIish u)
config.addFetchRefSpec(refSpec);
config.update(repo.getConfig());
+
+ repo.getConfig().setString(ConfigConstants.CONFIG_BRANCH_SECTION,
+ branch, ConfigConstants.CONFIG_REMOTE_SECTION, remote);
+ repo.getConfig().setString(ConfigConstants.CONFIG_BRANCH_SECTION,
+ branch, ConfigConstants.CONFIG_KEY_MERGE, branch); //$NON-NLS-1$ //$NON-NLS-2$
+
repo.getConfig().save();
// run the fetch command