Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Davis2016-09-02 18:58:37 +0000
committerGerrit Code Review @ Eclipse.org2016-09-07 17:18:42 +0000
commitbe0a6774549b75814b553b8cf853a3befc196b0e (patch)
treed6514cefc5297498b35d25cb22fee03c4fb0a166
parent2284ff2fced7725580898cfb7fa7356714785ef6 (diff)
downloadorg.eclipse.mylyn-be0a6774549b75814b553b8cf853a3befc196b0e.tar.gz
org.eclipse.mylyn-be0a6774549b75814b553b8cf853a3befc196b0e.tar.xz
org.eclipse.mylyn-be0a6774549b75814b553b8cf853a3befc196b0e.zip
set autocrlf=false on all git repositories
autcrlf does not work well. By default, Oomph sets autocrlf=true on Windows only (see https://bugs.eclipse.org/bugs/show_bug.cgi?id=474647). This causes all files to be converted to Windows line endings during the initial checkout. If you manually turn autocrlf off, they remain in Windows format forever unless you run a time consuming line endings conversion on the entire repository. Change-Id: I3c566b721c7641c59088de4c115154216d2963d7
-rwxr-xr-xorg.eclipse.mylyn.releng/oomph/Mylyn.setup60
1 files changed, 60 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.releng/oomph/Mylyn.setup b/org.eclipse.mylyn.releng/oomph/Mylyn.setup
index 028586d7..cc85798c 100755
--- a/org.eclipse.mylyn.releng/oomph/Mylyn.setup
+++ b/org.eclipse.mylyn.releng/oomph/Mylyn.setup
@@ -223,6 +223,12 @@
xsi:type="git:GitCloneTask"
id="git.clone.mylyn.builds"
remoteURI="mylyn/org.eclipse.mylyn.builds">
+ <configSections
+ name="core">
+ <properties
+ key="autocrlf"
+ value="false"/>
+ </configSections>
<annotation
source="http://www.eclipse.org/oomph/setup/InducedChoices">
<detail
@@ -337,6 +343,12 @@
id="git.clone.mylyn.commons"
remoteURI="mylyn/org.eclipse.mylyn.commons"
userID="">
+ <configSections
+ name="core">
+ <properties
+ key="autocrlf"
+ value="false"/>
+ </configSections>
<annotation
source="http://www.eclipse.org/oomph/setup/InducedChoices">
<detail
@@ -441,6 +453,12 @@
remoteURI="jdt/eclipse.jdt.core"
pushURI=""
checkoutBranch="master">
+ <configSections
+ name="core">
+ <properties
+ key="autocrlf"
+ value="false"/>
+ </configSections>
<annotation
source="http://www.eclipse.org/oomph/setup/InducedChoices">
<detail
@@ -481,6 +499,12 @@
id="git.clone.mylyn.context"
remoteURI="mylyn/org.eclipse.mylyn.context"
checkoutBranch="master">
+ <configSections
+ name="core">
+ <properties
+ key="autocrlf"
+ value="false"/>
+ </configSections>
<annotation
source="http://www.eclipse.org/oomph/setup/InducedChoices">
<detail
@@ -587,6 +611,12 @@
xsi:type="git:GitCloneTask"
id="git.clone.mylyn.docs"
remoteURI="mylyn/org.eclipse.mylyn.docs">
+ <configSections
+ name="core">
+ <properties
+ key="autocrlf"
+ value="false"/>
+ </configSections>
<annotation
source="http://www.eclipse.org/oomph/setup/InducedChoices">
<detail
@@ -711,6 +741,12 @@
xsi:type="git:GitCloneTask"
id="git.clone.mylyn.incubator"
remoteURI="mylyn/org.eclipse.mylyn.incubator">
+ <configSections
+ name="core">
+ <properties
+ key="autocrlf"
+ value="false"/>
+ </configSections>
<annotation
source="http://www.eclipse.org/oomph/setup/InducedChoices">
<detail
@@ -818,6 +854,12 @@
xsi:type="git:GitCloneTask"
id="git.clone.mylyn.releng"
remoteURI="mylyn/org.eclipse.mylyn">
+ <configSections
+ name="core">
+ <properties
+ key="autocrlf"
+ value="false"/>
+ </configSections>
<annotation
source="http://www.eclipse.org/oomph/setup/InducedChoices">
<detail
@@ -882,6 +924,12 @@
xsi:type="git:GitCloneTask"
id="git.clone.mylyn.reviews"
remoteURI="mylyn/org.eclipse.mylyn.reviews">
+ <configSections
+ name="core">
+ <properties
+ key="autocrlf"
+ value="false"/>
+ </configSections>
<annotation
source="http://www.eclipse.org/oomph/setup/InducedChoices">
<detail
@@ -995,6 +1043,12 @@
id="git.clone.mylyn.tasks"
remoteURI="mylyn/org.eclipse.mylyn.tasks"
checkoutBranch="master">
+ <configSections
+ name="core">
+ <properties
+ key="autocrlf"
+ value="false"/>
+ </configSections>
<annotation
source="http://www.eclipse.org/oomph/setup/InducedChoices">
<detail
@@ -1153,6 +1207,12 @@
xsi:type="git:GitCloneTask"
id="git.clone.mylyn.versions"
remoteURI="mylyn/org.eclipse.mylyn.versions">
+ <configSections
+ name="core">
+ <properties
+ key="autocrlf"
+ value="false"/>
+ </configSections>
<annotation
source="http://www.eclipse.org/oomph/setup/InducedChoices">
<detail

Back to the top