From 3187e6df4b7a2d7e8dbbefcb9e0ed1ad614e6f67 Mon Sep 17 00:00:00 2001
From: Tomi Tuhkanen
Date: Mon, 1 Aug 2016 09:50:04 +0300
Subject: [PATCH] Added note for windows users to getting started with vagrant
(#714)
---
source/getting-started/installation-vagrant.markdown | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/source/getting-started/installation-vagrant.markdown b/source/getting-started/installation-vagrant.markdown
index 1a1ee99cb10..669e42f90a9 100644
--- a/source/getting-started/installation-vagrant.markdown
+++ b/source/getting-started/installation-vagrant.markdown
@@ -32,6 +32,14 @@ cd home-assistant/virtualization/vagrant
The following instructions will assume you changed your working directory to be home-assistant/virtualization/vagrant. This is mandatory because Vagrant will look for informations about the running VM inside that folder and won't work otherwise
+
+When using Vagrant on Windows, change git's auto.crlf to input before cloning the Home Assistant repository. With input setting git won't automatically change line endings from Unix LF to Windows CRLF. Shell scripts executed during provision won't work with Windows line endings.
+
+
+```bash
+git config --global core.autocrlf input
+```
+
## {% linkable_title Create the Vagrant VM and start Home Assistant %}
```bash