Tagged Questions
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:
...
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 ...
3
votes
2answers
370 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
2answers
752 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
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
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 ...
1
vote
2answers
189 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
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
1answer
259 views
git crlf configuration in mixed environment
I'm running a mixed environment, and keep a central, bare repository where I pull and push most of my stuff. This centralized repository runs on Linux, and I check out to Windows XP/7, Mac and Linux. ...
1
vote
1answer
438 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 trawling the 'net it ...
0
votes
1answer
122 views
I converted line endings, and git-diff says my whole file is different. What have I done?
Is this normal, and should I commit this?
I am aware that Git has settings to conver line-endings to \n before storing them, but reconfigured my editor to use *nix style by default (don't know how it ...