To have the correct line endings in the Linux guest system by working on a Windows host, type the following Git command on the Windows host:
git config --global core.autocrlf true
git config --global core.autocrlf true
The following untracked working tree files would be overwritten by checkoutThe following command can be helpful in that case.
git clean -d -fx ""See http://www.kernel.org/pub/software/scm/git/docs/git-clean.html
-x means ignored files are also removed as well as files unknown to git.
-d means remove untracked directories in addition to untracked files.
-f is required to force it to run.