This repository has been archived by the owner on Nov 11, 2024. It is now read-only.
-
I'm not really sure what is the reason but here's what's happening:
Then I get the following
I'm using mono on Linux Mint and my suspicion is that this is a problem with line endings, given Windows's |
Beta Was this translation helpful? Give feedback.
Answered by
manio143
Feb 11, 2017
Replies: 1 comment
-
Ok, I found the solution. It's about all git projects really. When |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
alexrp
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ok, I found the solution. It's about all git projects really. When
core.autocrlf
is set to true then git clones all repos with CRLF even on linux, which obviously breaks stuff.To fix that one has to change it to
core.autocrlf = input
(may need manuall .gitconfig alteration).