From: Ferry Huberts <ferry.huberts@xxxxxxxxxx> This is to make sure that the git plugin sets up a clone in the same fashion as the CLI git clone command. Signed-off-by: Ferry Huberts <ferry.huberts@xxxxxxxxxx> --- .../org/spearce/egit/core/op/CloneOperation.java | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/org.spearce.egit.core/src/org/spearce/egit/core/op/CloneOperation.java b/org.spearce.egit.core/src/org/spearce/egit/core/op/CloneOperation.java index 145c50b..f9ff6a3 100644 --- a/org.spearce.egit.core/src/org/spearce/egit/core/op/CloneOperation.java +++ b/org.spearce.egit.core/src/org/spearce/egit/core/op/CloneOperation.java @@ -154,6 +154,9 @@ private void doInit(final IProgressMonitor monitor) remoteConfig.addFetchRefSpec(wcrs.expandFromSource(ref)); } + /* we're setting up for a clone with a checkout */ + local.getConfig().setBoolean("core", null, "bare", false); + remoteConfig.update(local.getConfig()); local.getConfig().save(); } -- 1.6.0.6 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html