Tagged Questions

1
vote
1answer
58 views

git & Cygwin - trailing whitespace causes “not uptodate” [closed]

Git on Windows w/ Cygwin is fraught with dangers. However there's one that's really starting to bug me. It's related to the core.autocrlf=true behaviour. After spending a week tra …
1
vote
1answer
57 views

How do I fix line ending issues after migrating from SVN to git?

I just finished converting a Subversion repository to git using git svn clone--stdlayout --authors-file=ourcommitters.txt svn://svn.internalserver.com While doing so, I had the …
1
vote
1answer
97 views

Can SQL Server bcp in a file with Unix line endings?

I'm trying to use the SQL Server bcp utility to import a text file from a samba share. bcp is choking on the Unix line endings. I'm sure I could add an intermediate step, either on …
1
vote
1answer
170 views

Dealing with files that Git refuses to reset?

I and my collegues are having terrible trouble getting git to behave properly with certain files on our Windows repostiory clones. The clones have been made by cloning a repositor …
6
votes
6answers
545 views

What’s a quick one-liner to remove empty lines from a python string?

I have some code in a python string that contains extraneous empty lines. I would like to remove all empty lines from the string. What's the most pythonic way to do this? Note: …
2
votes
3answers
873 views

How should I Fix “svn: Inconsistent line ending style”?

When I run "svn propedit svn:ignore ." at the root of my svn repository, I get this error: svn: Inconsistent line ending style I have tried to run this script: http://blog.eflow. …
10
votes
4answers
984 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 …
3
votes
3answers
510 views

Is there an equivalent of BufferedReader.readLine() that lets me pick what my end of line characters are?

The Javadoc for BufferedReader.readLine() says: A line is considered to be terminated by any one of a line feed ('\n'), a carriage return ('\r'), or a carriage return followe …
0
votes
6answers
2k views

What does Visual Studio mean by normalize inconsistent line endings?

It occasionally tells me: "The line endings in the following files are not consistent. Do you want to normalize the line endings?" Then gives me a drop down with different standa …
5
votes
2answers
304 views

Historical reason behind different line ending at different platforms

Why did DOS/Windows and Mac decide to use \r\n and \r for line ending instead of \n? Was it just a result of trying to be "different" from Unix? And now that Mac OS X is Unix (-li …
2
votes
4answers
236 views

How to find files with ^M from linux using csh

Is there a csh script/command to list all the files in source source tree which have line endings that show up as "^M" in emacs (under linux). Thanks!
1
vote
4answers
438 views

How to determine the line ending of a file

I have a bunch (hundreds) of files that are supposed to have Unix line endings. I strongly suspect that some of them have Windows line endings, and I want to programmatically figur …