Browse Source

Fixed the git init to properly set bare=true

When --git-dir=X is given JGit creates a bare repository in the
directory X. However, when the --bare option is not explicitly
given, this is not properly reflected in the X/config file i.e.
the bare=true is missing.  This change fixes this minor issue.

Signed-off-by: Sasa Zivkov <sasa.zivkov@sap.com>
tags/v0.10.1
Sasa Zivkov 13 years ago
parent
commit
af4f6c5125
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Init.java

+ 3
- 0
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Init.java View File

@@ -2,6 +2,7 @@
* Copyright (C) 2009, Constantine Plotnikov <constantine.plotnikov@gmail.com>
* Copyright (C) 2008, Google Inc.
* Copyright (C) 2010, Robin Rosenberg <robin.rosenberg@dewire.com>
* Copyright (C) 2010, Sasa Zivkov <sasa.zivkov@sap.com>
* and other copyright owners as documented in the project's IP log.
*
* This program and the accompanying materials are made available
@@ -66,6 +67,8 @@ class Init extends TextBuiltin {
protected void run() throws Exception {
if (gitdir == null)
gitdir = new File(bare ? "." : Constants.DOT_GIT);
else
bare = true;
db = new FileRepository(gitdir);
db.create(bare);
out.println(MessageFormat.format(CLIText.get().initializedEmptyGitRepositoryIn, gitdir.getAbsolutePath()));

Loading…
Cancel
Save