Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
25
votes
2answers
7k views

Why should I use core.autocrlf=true in Git?

I have a Git repository that is accessed from both Windows and OS X, and that I know already contains some files with CRLF line-endings. As far as I can tell, there are two ways to deal with this: ...
19
votes
8answers
15k views

What does Visual Studio mean by normalize inconsistent line endings?

Visual Studio occasionally tells me: The line endings in the following files are not consistent. Do you want to normalize the line endings? It then gives me a drop down with different standards ...
17
votes
6answers
11k views

gVim showing carriage return (^M) even when file mode is explicitly DOS

I'm using gVim on Windows. My code shows ^M characters at the end of lines. I used :set ff=dos to no avail. The ^M characters remain for existing lines, but don't show up for newlines I enter. I've ...
11
votes
3answers
4k views

Definitive recommendation for git autocrlf settings

I use Windows, Mac OS X and linux on a daily basis. I use git in all these environments, pulling from repos that are used by folks with different choices for line endings. Are there definitive ...
10
votes
3answers
4k views

Python get proper line ending

Is there an easy way to get the type of line ending that the current operating system uses?
9
votes
5answers
1k views

What is the difference between \r and \n?

How are \r and \n different. I think it has something to do with Unix vs. Windows vs. Mac, but I'm not sure how exactly they're difference, and which to search for/match in regexes.
9
votes
9answers
14k 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.org/archives/130 ...
7
votes
7answers
1k views

How to replace line-endings in VIM

How can I replace all line-endings in big file (>100MB)? I have tried to do :%s/\n/, /g but it's too slow.
7
votes
6answers
4k 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: I'm not looking for ...
7
votes
3answers
2k 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 followed immediately by a ...
7
votes
4answers
972 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 (-like), did Apple ...
6
votes
1answer
380 views

How to avoid mixed eol-styles in a svn repository

Is there a best practice for preventing mixed eol-styles in a subversion repository. I know that svn:eol-style=native can be set as an auto-prop, but I would have to ensure that it was set for all ...
6
votes
5answers
4k 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 figure out which ones do. ...
5
votes
2answers
377 views

read lines of a file in ruby

I was trying to use the following code to read lines from a file. But when reading a file, the contents are all in one line. line_num=0 File.open('xxx.txt').each do |line| print "#{line_num += 1} ...
5
votes
8answers
311 views

What's the difference between \n and \r\n?

They both mean "new line" but when is one used over the other?
5
votes
5answers
11k views

Carriage Return\Line feed in Java

i have created text file in unix enviroment using java code. For writing the text file i am using java.io.FileWriter and BufferedWriter. and for newline after each row i am using bw.newLine() method. ...
4
votes
2answers
84 views

How to make sure all my source files stay UTF-8 with Unix line endings?

I'm looking for some command-line tools for Linux that can help me detect and convert files from character sets like iso-8859-1 and windows-1252 to utf-8 and from Windows line endings to Unix line ...
4
votes
1answer
155 views

Preserve end-of-line style when working with files in python

I am looking for a way to ensure that the end-of-line style of a file is maintained in python program while reading, editing and writing. Python has universal file ending support, which can convert ...
4
votes
3answers
505 views

prefer windows or unix line ending for code?

I writing code that should compiled and run on both Windows and unix like Linux. I know about difference between line endings, but question is which to prefer for my code? Does it matter? I want it to ...
3
votes
2answers
364 views

Convert line-endlings for whole directory tree (Git)

Following situation: I'm working on a Mac running OS X and recently joined a project whose members so far all use Windows. One of my first tasks was to set up the codebase in a Git repository, so I ...
3
votes
3answers
506 views

Vim: Mac vs. Linux ^M Problem

I use Vim and GIT to develop my project on a Linux/Ubuntu machine. In the past, I used to use Windows, which means line ends were DOS format. Now after moving to Linux, I always see ^M ...
3
votes
6answers
2k views

How can I detect DOS line breaks in a file?

I have a bunch of files. Some are Unix line endings, many are DOS. I'd like to test each file to see if if is dos formatted, before I switch the line endings. How would I do this? Is there a flag ...
3
votes
1answer
504 views

ASP Readline non-standard Line Endings

I'm using the ASP Classic ReadLine() function of the File System Object. All has been working great until someone made their import file on a Mac in TextEdit. The line endings aren't the same, and ...
3
votes
2answers
962 views

SVN Update adds ^M when conflicts?

We've been working on some files at the same time. Occasionally, when we "svn up" we'll see files with "^M"'s appended to every line of certain files. We originally blamed each other's editors >_>. ...
3
votes
2answers
751 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 repository which originates ...
2
votes
0answers
13 views

How do I manage line-endings when reading XML file in SSIS 2005

I have a simple xml file. It defined an element in that file as... <xs:element name="Comments" > <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength ...
2
votes
1answer
74 views

Can I strip carriage returns as they go into a `std::stringstream`?

struct T { void eat(std::string const& segment) { buffer << segment; std::string sentence; while (std::getline(buffer, sentence)) std::cout << "[" ...
2
votes
1answer
92 views

Weird line ending conversion (CR, LF, CRLF) with istreambuf_iterator<char>(ifstream(…, ios::binary))

I'm writing a CRC32 routine in MSVC++2010 and need to read a file in binary mode, byte by byte. I'm doing it with ifstream and istreambuf_iterator, and it generally works, but it does some weird ...
2
votes
2answers
202 views

std::getline alternative when input line endings are mixed

I'm trying to read in lines from a std::istream but the input may contain '\r' and/or '\n', so std::getline is no use. Sorry to shout but this seems to need emphasis... The input may contain either ...
2
votes
2answers
720 views

remove carriage return in bash script, or ignore it when using mv / mkdir

hey guys, i am trying to create a directory from a variable that comes from grep'ing and it keeps failing, telling me there is a carriage return where there isn't. i have tried dos2unix, it tells me ...
2
votes
1answer
473 views

Force svn:eol-style=native on the server?

Currently, in order to ensure the subversion property eol-style is set to native for each new file added to our project, we have to add this to the ~/.subversion/config file on each of our developers ...
2
votes
1answer
330 views

Do I want normalized line endings?

I am getting the following message in Visual Studio 2008: The line endings in the following file are not consistent. Do you want to normalize the line endings? I don't understand what that ...
2
votes
0answers
259 views

Inconsistent line endings using git-svn with commits from both VCS

I have a remote SVN repository and a local git repository. Using git-svn I have linked git to SVN and am successfully using git svn rebase, git svn dcommit to pull and push to the remote SVN ...
2
votes
1answer
85 views

How can I setup git to checkout some files crlf, others lf?

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 ...
2
votes
3answers
1k views

git diff - show me line ending changes?

For some reason my editor looks like it is occasionaly changing changing the line endings of my source files. When I do 'git diff', all I get is a mysterious empty - followed by a +, but no ...
2
votes
3answers
1k views

How can I normalize the EOL character in Java?

I have a linux server and many clients with many operating systems. The server takes an input file from clients. Linux has end of line char LF, while Mac has end of line char CR, and Windows has end ...
2
votes
2answers
918 views

How to find/fix files with MIXED line endings (0x0d 0x0d 0x0a)

I know I can "probably" fix them by using "flip -u" (cygwin flip) which basically removes one of the 0xd's leaving the file with DOS style line endings (0x0d 0x0a) (of course, technically speaking ...
2
votes
3answers
3k views

Normalizing line endings in Visual Studio 2010

We have multiple developers working on an application and it seems that whenever one particular person works on a file then anyone else works on it they will get: The line endings in the following ...
2
votes
1answer
359 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 git flag ...
2
votes
5answers
1k 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 Unix or Windows, to ...
2
votes
4answers
2k views

SVN Line ending Style

When i try to commit the file in SVN its showing error as "Commit failed".Details follow....commit svn: Inconsistent line ending style.
2
votes
4answers
3k 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
1answer
24 views

Is there any reason behind differents line endings?

Why documents writted in differents OSs have differents line endings characters? Are any technical reason behind this or the creators put distintinct characters just because they want.
1
vote
6answers
137 views

What is the meaning of this Python statement?

More specifically, I'm not sure what the "%" and "\" symbols coming right after each other are supposed to mean: return 'guitar { id: %d, relevant_properties: (%.02f, %.02f, %.02f), ...
1
vote
4answers
70 views

I need way to find all files containing odd ^M invisible characters

I know for a fact that these PHP files exist. I can open them in VIM and see the offending character. I found several links here on stackoverflow that suggest remedies for this but none of them work ...
1
vote
1answer
91 views

Inconsistent line endings warning when line endings are consistent

I was opening an auto-generated file in Visual Studio to inspect it, and Visual Studio tells me the line-endings are inconsistent. I know about the difference between LF and CRLF, so I thought I would ...
1
vote
2answers
185 views

How to create and apply properly .patch file to a single .cpp file using diff?

I'm trying to apply a .patch file to a single .cpp file using git diff. These are my files: old.cpp , new.cpp and fix.patch. old.cpp is the original unmodified source code, new.cpp is the modified ...
1
vote
4answers
319 views

preg_replace remove multiple \n

I've been trying to figure this out for an hour. I just need a simple fix I can learn from. How to remove multiple occurrences of \n from the sample below and replace with just one occurrence of \n ? ...
1
vote
2answers
163 views

How do I change the file endings for either windows or mac file in linux?

When I save a TSV file in windows from excel, it uses the line ending of \r or \015 (octal) which shows up in vi as ^M. When I save a TSV file on the Mac from excel, it uses the line ending of \r\n ...

1 2