Tagged Questions

43
votes
4answers
15k views

What's the best CRLF handling strategy with git?

I tried committing files with CRLF-ending lines but it failed. I spent a whole work day on my Windows computer trying different strategies, and was almost drawn to stop trying to use git and instead ...
32
votes
6answers
10k views

Is it possible for git-merge to ignore line-ending differences?

Is it possible for git merge to ignore line-ending differences? Maybe I'm asking the wrong question ... but: I tried uisng config.crlf input but things got a bit messy and out of control, specially ...
4
votes
6answers
1k views

Can git-svn be made to handle CRLF like native subversion clients?

I have a subversion repository hosted on Linux but only ever accessed via windows clients as it's for the source of a large Windows application. It would be awesome if I could work on this repository ...
2
votes
1answer
529 views

Cross platform development using Git (EOL issue)

In our development environment we use Windows, Mac, and Linux. I am having trouble when it comes to the commit -> pull -> push work flow. The problem is end of line characters. If someone makes ...
1
vote
1answer
75 views

Overwrite unstaged commits due to gitattributes eol settings

I have a fork that has automatic eol changes on cloning due to .gitattributes. This is fixed in upstream. I would like to merge upstream into my master; however, I am unable to get rid of these ...
0
votes
1answer
186 views

how to avoid git-apply changing line endings

I have a git repo set with core.eol=crlf, core.autocrlf=true and core.safecrlf=true. When I apply a patch from another crlf repo and to my repo all the line endings for the effected file are changed ...