My main OS is windows 10.
I have an Ubuntu 14.04 box running in Vagrant that I develop my applications on. The box is running SMB which gives me root file access to the Ubuntu server.
On the Ubuntu server I have my application files in a GIT repo with a gitlab server as the origin.
I run SourceTree on my windows machine that connects to the ubuntu GIT repo through the SMB share (so I assume it uses my Windows GIT installation).
Git status on the ubuntu machine gives no changes.
Git status on Windows and SourceTree indicate that all the files have changed (because of the line endings).
What settings on which OS should I use in order to be able to use the same local repo on both Windows and Linux?
On Windows:
$ git config --global core.autocrlf true
On Linux:
$ git config --global core.autocrlf input
Read more about Dealing with line endings