Tagged Questions
CRLF means "carriage return" + "linefeed" and is the standard text file line-termination on Microsoft DOS and Windows systems.
42
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 ...
21
votes
5answers
7k views
git-diff to ignore ^M
In a project where some of the files contains ^M as newline separators. Diffing these files are apparently impossible, since git-diff sees it as the entire file is just a single line.
How does one ...
12
votes
5answers
3k views
Line endings messed up in Git - how to track changes from another branch after a huge line ending fix?
We are working with a 3rd party PHP engine that gets regular updates. The releases are kept on a separate branch in git, and our fork is the master branch.
This way we'll be able to apply patches to ...
11
votes
3answers
1k views
Getting std :: ifstream to handle LF, CR, and CRLF?
Specifically I'm interested in istream& getline ( istream& is, string& str );. Is there an option to the ifstream constructor to tell it to convert all newline encodings to '\n' under the ...
9
votes
1answer
2k views
git, whitespace errors, squelching and autocrlf, the definitive answers
Please can you explain about whitespace errors in git, what do they mean, what is 'squelching', and do I need to worry about it?
(Running msysgit, but with other users on linux).
There is already a ...
8
votes
1answer
734 views
Git on Windows: What do the crlf settings mean?
I don't understand the complexities related to crlf settings in git: core.autocrlf, core.safecrlf
I'm developing a cross-platform project in a team and would like both Windows and Linux developers to ...
7
votes
4answers
4k views
./configure : /bin/sh^M : bad interpreter
I've been trying to install lpng142 on my fed 12 system. Seems like a problem to me. I get this error
[root@localhost lpng142]# ./configure
bash: ./configure: /bin/sh^M: bad interpreter: No such file ...
7
votes
10answers
1k views
What are these ^M's that keep showing up in my files in emacs?
So I think it may have to do with textmate, but we work in a small team and are having some issues with full-file conflicts of nearly identical files in git because each line of one branch has a ^M ...
7
votes
2answers
5k views
Git replaced all of my LF with CRLF - How do I fix this?
I just ran a
git add -A
on my first git project.
I got back about a thousand responses:
"warning: LF will be replaced by CRLF"
as it went through each file (Ruby files, some are gems).
I ...
6
votes
3answers
426 views
How read Linux or Mac created file in Windows via C FILE*?
As all we know in windows EOL is CRLF and in linux LF and CR in Mac. (more_info)
I want to write a program which reads as linux and Mac as well Win files line by line in Windows. To open file I would ...
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
3answers
10k views
What is a quick way to force CRLF in C# / .NET?
How would you normalize all new-line sequences in a string to one type?
I'm looking to make them all CRLF for the purpose of email (MIME documents). Ideally this would be wrapped in a static method, ...
5
votes
2answers
2k views
How do I stop Eclipse (EPIC Perl) from adding DOS CR/LF to my Perl scripts?
I use Eclipse on Windows to edit files on a remotely mounted Linux SMB share.
Coupled with Samba's stubborn opposition to on-the-fly mapping, Eclipse's insistence on CR/LF creates a real headache ...
5
votes
2answers
2k views
When you set a global configuration option for git on Windows, where does it get written to?
If you set something like this on Windows:
git config --global core.autocrlf false
Where is this global setting getting written to?
4
votes
7answers
2k views
in Vim how do I hide the eol doc chars ^M
in gvim on windows if I have text with CRLF eol then the text will display ^M at the end of each line.
How do I 'hide' that special char from display?
the :set nolist command """ does not dismiss ...
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 ...
4
votes
2answers
3k views
Carriage Return/Line Feed in .Net Resource File (App_GlobalResources)
I'm keeping several texts in an App_GlobalResources .resx file.
The texts have to be multiline and I need to have them contain line feeds. However, when I read the contents, all line feeds are gone ...
3
votes
1answer
85 views
C# replacing a special character in a string
This used to be easy in VB but I'm completely stumped in c# VS2010.
I am receiving data form a serial port. At the end of each line there is a special character which indicates EndOfText. If you ...
3
votes
1answer
88 views
How to stop Windows from converting “\r\n” to “\n” when reading a text file in C?
I have a normal text file that lines end with normal \r\n. However, when using 'open' and 'read', Windows convert all the \r\n to \n. I know this means I have to open the file in binary mode but the ...
3
votes
5answers
285 views
Is \n equivalent to Environment.NewLine in .NET? [closed]
Possible Duplicate:
Difference between “\n” and Environment.NewLine
Hello all!
The way I understand it, when we use . symbol in format string for double, it doesn't mean "dot", ...
3
votes
1answer
212 views
git repo in Dropbox, syncing on Linux and Windows, Whitespace issues
I have a git repo in my Dropbox, that syncs between a Linux and a windows machine. I work on both machines on text files (.cpp on linux and win, .tex/.txt on win). So, my editors and programs both ...
3
votes
2answers
975 views
Git: convert carriage return \r to new line \n with git hook?
A fellow coder uses a Windows computer that is putting carriage returns everywhere in our source.
Is there a way to write a git hook that converts all \r\n to \n?
Note I haven't used git hooks ...
3
votes
4answers
331 views
How can I print out the value of a git configuration setting (core.autocrlf) on Windows?
I'm trying to fix a problem with CRLF on Windows.
How do I see what the value of the configuration setting core.autocrlf is set to on my system?
3
votes
2answers
966 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 >_>. ...
2
votes
2answers
146 views
Git, adding files to repository gives fatal error for LF ->CRLF
I'm new to git and I need some help. I'm using msysgit on windows.
When I execute the command git add [folderName] I get the response:
fatal: LF would be replaced by CRLF in [.css file or .js file]
...
2
votes
1answer
85 views
bash script : end of line character issue : file from excel
Working in bash under Linux ubuntu 10 here
I have Bash script that reads lines from gedit-created .txt file and pushes then into an array. Works as expected.
However when my input is a .txt ...
2
votes
2answers
62 views
Split CRLF between TCP payloads
I'm currently writing a low-level HTTP parser and have run into the following issue:
I am receiving HTTP data on a packet-by-packet basis, i.e. TCP payloads one at a time. When parsing this data, I ...
2
votes
2answers
307 views
Can I avoid CRLF injection attacks by replacing JUST the CR?
I have a form which allows one file attachment, and generates an email to a hard-coded address. I would like to avoid the possibility of malicious users entering custom mail headers (a CRLF ...
2
votes
4answers
510 views
GIT: How to get rid of the annoying CRLF message on msysgit (windows)?
Practically everytime I stage a textfile (that's most of em), I get the message from git gui (I use msysgit) that It replaced (or is about to) line endings with CRLF's. Obviously I want that (and ...
2
votes
2answers
1k views
Writing the content of a RichTextBox to a file
I have a RichTextBox and I want to save the text to a file. Each line of the RichTextBox are ended with CR+LF ("\n\r") but when i save it to a file, the lines only contains the LF char at the end.
...
2
votes
1answer
613 views
Mercurial - cleverencode - cleverdecode - multiple file patterns - mercurial.ini
How do I specify the CRLF encode/decode option in mercurial.ini in Windows?
The documentation gives the following options:
[extensions]
win32text =
[decode]
** = cleverdecode:
[encode]
** = ...
2
votes
1answer
195 views
Moving data from Word to Access seamlessly
I am trying to migrate structured documents (i.e. documents that are mostly some metadata and one big table) to a database. When I try to move tabular data from Word to Excel, my main point of pain is ...
1
vote
1answer
36 views
Detect end of message for socket communication PHP
I have small HTTP server script that receives HTTP client requests and replies. I need to detect when there is \r\n\r\n type of ending. This happens when we have an input like this:
GET / HTTP/1.1
...
1
vote
1answer
47 views
How to store files with CR-LF line endings in git?
I'm developing software under Linux which will be compiled using a Windows-only compiler. I want git to store my files with CR-LF line endings in the repository on Linux to be able to package the ...
1
vote
1answer
66 views
TextArea doubles all linebreaks
I've faced a really weird behaviour of textarea today. Have been bugfixing it for the whole day, and I still cannot find the solution. Would appreciate any help, so thanks in advance.
I'm creating a ...
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
98 views
How to turn off Git warnings “LF will be replaced by CRLF”?
I am working on Windows, but may also work on Unix, so I don't need to store Windows line endings. I just want to suppress the warning.
I found these Stack Overflow questions that are relevant:
How ...
1
vote
1answer
62 views
portability, should csv file use CRLF line feeds on windows
I've developed a command line tool which converts some kind of binary data to csv text.
Now I'm going to port it to Windows and I'am still not sure if I should write "\r\n" line feeds specially for ...
1
vote
1answer
88 views
Git: how to renormalize line endings in all files in all revisions?
I have an existing repository where line endings are all messed up. I'd like to rewrite the entire repository and fix line endings once and for all. There are text files and binary files, let's ...
1
vote
1answer
127 views
PCRE_MULTILINE “m” Modifier Problem
Agree with the PHP Modiefers Reference in the ' m ' modiefer description says:
When this modifier is set, the "start of line" and "end of line" constructs match immediately following or immediately ...
1
vote
1answer
90 views
What is the easiest way convert line endings to unix style when creating tar file in Gradle?
At work we use a mixture of Windows and Linux workstations during development. For deployment we always deploy to Unix machines. I'd like to ensure that the line endings are always in Unix format. ...
1
vote
1answer
166 views
git line-endings issue with just one clone of a repo
Ok, I have a git repo. All clones running same-ish version of git (pretty much latest).
'origin' is on GitHub.com
clones on various CentOS servers, no problems with line-endings encountered
clone on ...
1
vote
2answers
460 views
CRLF end of line and ostringstream
I am trying to use a ostringstream to build a string which uses the platform standard line endings (so for me it is CRLF since I am developing for Windows). I tried the following code:
...
1
vote
2answers
716 views
How to remove ^M (CRLF) from w file sent from Windows to linux FTP server in perl?
I'm sending a comma delimited file (in ASCII) via Net::FTP in perl (generated on Windows) to a linux based FTP account. The issue is that my file on the linux side has ^M at the end of each line. I ...
1
vote
3answers
2k views
how remove all special characters(except - and /) from a string including all cr,lf,crlf, other illegal characters?
i have been trying to remove special characters. i am not able to remove many crlf in middile of the string. please help. i got this issue in production, need to resolve it soon. thanks in advance.
1
vote
1answer
232 views
GIT CRLF to LF - git parent repo on UNIX and clones on both windows and unix
This question is somewhat similar to my other question,
http://stackoverflow.com/questions/3455772/make-sure-files-are-converted-crlf-into-lf-in-an-update-hook-is-there-a-performa
So here is what am ...
1
vote
1answer
112 views
Copying DLL out of WAR results in LFs becoming CRLFs
I am using the Java Native Interface to include some statically compiled code in with my Java application. Particularly, I've got a DLL file with the compiled code in the WAR that contains my ...
1
vote
1answer
609 views
make sure files are converted CRLF into LF in an update hook- is there a performance hit?
There had been a lot of discussions about the core.autocrlf and core.safecrlf features in the current release and the next release. The question i have here relates to an environment where developers ...
1
vote
2answers
1k views
editing a file with vim that has no EOL marker on the last line but has CRLF line endings
I often have to edit script files, the interpreter for which treats files that have an EOL marker on the last line of the file as an error (i.e. the file is treating CRLF as "newlines", not as "line ...
1
vote
3answers
211 views
Problem with iostream, my output endl are littles squares
I have a problem with with my output when I write to I file I get squares when I put endl to change lines.
std::ofstream outfile (a_szFilename, std::ofstream::binary);
...