diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/InitCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/InitCommand.java index 5b96cddac..77fc3042c 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/InitCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/InitCommand.java @@ -52,7 +52,7 @@ import org.eclipse.jgit.lib.RepositoryBuilder; /** - * Create an empty git repository + * Create an empty git repository or reinitalize an existing one * * @see Git documentation about init @@ -89,7 +89,8 @@ public Git call() throws JGitInternalException { builder.setGitDir(d); } Repository repository = builder.build(); - repository.create(bare); + if (!repository.getObjectDatabase().exists()) + repository.create(bare); return new Git(repository); } catch (IOException e) { throw new JGitInternalException(e.getMessage(), e);