From 4694ffecce75f97368aa93515b8df8c4f422e119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20B=C3=B8e?= Date: Mon, 8 Jan 2018 12:44:31 +0100 Subject: [PATCH] doc: win: Specify autocrlf=false when cloning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Certain parts of Zephyr require Unix-style line-endings. To make sure the line endings are not converted to Windows-style line-endings we explicitly specify core.autocrlf=false when cloning. This fixes #5557 Signed-off-by: Sebastian Bøe --- doc/getting_started/installation_win.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/getting_started/installation_win.rst b/doc/getting_started/installation_win.rst index 19cf5f1d8cfc32..a20952aedf38e7 100644 --- a/doc/getting_started/installation_win.rst +++ b/doc/getting_started/installation_win.rst @@ -72,7 +72,7 @@ environment for Windows. Follow the steps below to set it up: .. code-block:: console $ cd ~ - $ git clone https://github.com/zephyrproject-rtos/zephyr.git + $ git clone --config core.autocrlf=false https://github.com/zephyrproject-rtos/zephyr.git #. Install pip and the required Python modules::