summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2012-06-14 00:20:22 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2012-06-14 00:20:48 +0200
commit221554e35ffc8ac261a333091df2c9b33db34cd7 (patch)
tree7162c1c2c1d8dfe7780bfd100a7f614991d0e74d /org.eclipse.jgit
parent55f42a8c1d77c6cf6d85a773d2b1f6153ff2fc7f (diff)
parent2f27d5ae12ef0dbb8c493573e389bf9f6a10f570 (diff)
downloadjgit-221554e35ffc8ac261a333091df2c9b33db34cd7.tar.gz
jgit-221554e35ffc8ac261a333091df2c9b33db34cd7.zip
Merge branch 'stable-2.0'
* stable-2.0: Prepare post v2.0.0.201206130900-r builds JGit v2.0.0.201206130900-r Add org.eclipse.jgit.pgm.feature to enable consumption via p2 Do not set core.autocrlf when creating repo Change-Id: Ifdd71a6bc14d9c79f4433ebc3b53bf0042a4d4c8 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/storage/file/FileRepository.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/FileRepository.java b/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/FileRepository.java
index fa87b9f26a..7934e7f9be 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/FileRepository.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/FileRepository.java
@@ -280,8 +280,6 @@ public class FileRepository extends Repository {
ConfigConstants.CONFIG_KEY_BARE, true);
cfg.setBoolean(ConfigConstants.CONFIG_CORE_SECTION, null,
ConfigConstants.CONFIG_KEY_LOGALLREFUPDATES, !bare);
- cfg.setBoolean(ConfigConstants.CONFIG_CORE_SECTION, null,
- ConfigConstants.CONFIG_KEY_AUTOCRLF, false);
cfg.save();
}