From 99ab22c474ffccbdd9081959b80f3b4bd1967c84 Mon Sep 17 00:00:00 2001 From: Sasa Zivkov Date: Fri, 9 Oct 2009 14:43:45 +0200 Subject: [PATCH] Don't create .git/remotes folders on init For historical reasons JGit was creating .git/remotes folder when initialization an empty repository. However, this folder is never used and the new Git repository format doesn't contain them. Removed the unnecessary remotes folder creation, it was removed from C Git in 75c384efb52d ("Do not create $GIT_DIR/remotes/ directory anymore") by Junio C Hamano on Dec 19 2006. C Git hasn't made it for almost 3 years. Change-Id: I5473f3676a3642afdf9aaac44b7e6319c6e170b9 Signed-off-by: Sasa Zivkov Signed-off-by: Shawn O. Pearce --- org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java | 1 - 1 file changed, 1 deletion(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java index 0ca4f79c2..5b8b34fa6 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java @@ -185,7 +185,6 @@ public void create(boolean bare) throws IOException { objectDatabase.create(); new File(gitDir, "branches").mkdir(); - new File(gitDir, "remotes").mkdir(); final String master = Constants.R_HEADS + Constants.MASTER; refs.link(Constants.HEAD, master);