I have a git repository which contains (among others) *.wse text files and *.sh text files. How can I setup git to always checkout *.wse files with CRLF line endings and *.sh files with LF line endings?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

Use a gitattributes file to specify e.g.

*.wse eol=crlf
*.sh eol=lf
link|improve this answer
Thanks, this did it. – Tobias Oct 13 '10 at 16:36
feedback

Your Answer

 
or
required, but never shown

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