Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Git on Windows: What do the crlf settings mean?

I am editing Linux files in on a Windows system with Unix EOL aware editors. How can a particular repository be set to respect Linux line endings, ie treat as though it is a Linux system?

share|improve this question

marked as duplicate by Mat, Antony Vennard, Magnus Skog, Andy, hakre Feb 28 '12 at 22:19

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

Something like:

git config core.autocrlf false

After this it should not touch line endings.

share|improve this answer
my initial choice was to set core.autocrlf to input but after reading the question referred to Mat comment above I settled for core.autocrlf false – vfclists Feb 28 '12 at 20:16

Not the answer you're looking for? Browse other questions tagged or ask your own question.