You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2019/06/20 12:27:18 UTC

[jmeter] branch master updated: Add a note about core.autocrlf to build instructions.

This is an automated email from the ASF dual-hosted git repository.

fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new 39959a9  Add a note about core.autocrlf to build instructions.
39959a9 is described below

commit 39959a9012f65d8deb29dc28a2516eb9dd794e1f
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Thu Jun 20 14:27:00 2019 +0200

    Add a note about core.autocrlf to build instructions.
---
 xdocs/building.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/xdocs/building.xml b/xdocs/building.xml
index 90b0c38..f5324be 100644
--- a/xdocs/building.xml
+++ b/xdocs/building.xml
@@ -148,6 +148,14 @@ Check that patch does not break JUnit tests by running:
     <li>Create a PR and link it in the bugzilla issue</li>
 </ul>
 
+<note>We have added a <code>.gitattributes</code> file to configure line endings of the files under version control.
+  Those settings can lead to strange looking <em>changes</em> on some newly checked out files, e.g. JavaScript or CSS files,
+  where the only change is the line ending.<br/>
+  To get rid of those problems set <code>core.autocrlf</code> to <code>input</code> before you clone the repository using
+  the following command:
+  <source>git config --global core.autocrlf input</source>
+</note>
+
 <h3>Create a PR using Patch</h3>
 <ul>
     <li>Open a bugzilla issue, see <a target="_blank" href="issues.html">Issues page</a></li>