Recent Posts
- (02/24) Calling an Element from a Helper TAGS:CakephpWeb ProgrammingUsageTutorialExample
- (10/14) Forcing A Single Join in CakePHP PaginationTAGS:CakephpCakephp 13DatabaseErrorsHabtmMysqlMssqlWeb ProgrammingUsage
- (08/11) Inserting NOW() into MySQL Using CakePHPTAGS:CakephpDatabaseMysqlMssqlWeb ProgrammingUsage
- (08/07) Best PaginateCount for CakePHP - with Group By SupportTAGS:CakephpBehaviorsWeb ProgrammingUsageDatabaseExampleMysqlHabtmHack
- (04/03) CakePHP Error Messages Not Showing on FormTAGS:CakephpCakephp 13Web ProgrammingErrorsUsage
- (02/06) Sorting Paginated Results Using a Related Model Field in CakePHPTAGS:CakephpWeb ProgrammingUsageExample
- (11/02) Changing CakePHP's Model useTable on the FlyTAGS:CakephpWeb ProgrammingMysqlDatabaseExampleTutorial
- (10/18) The Funniest Error Message Ever - Thank You EclipseTAGS:EclipseWeb ProgrammingErrorsHumorWindowsUsageSoftwarePhpCakephp
Subscribe to my feed
MainelyDesign.com Blog
Avoiding New Line Errors using Git on Windows
Posted on 05/12/2009 at 12:27 pm by Kevin Wentworth
Viewed 1,903 times | 0 comments
I'm finally working on moving my code over to a version control system. I've tried several times over the past few years to start using Subversion, but I never quite got into it. After hearing so much about Git, I decided I needed to start using it. Luckily, most people tell you to forget everything about Subversion when using Git- no problem there!
I ran into a huge issue. I created a new repository and wanted to add quite a large project (1,200+ files). At the end of adding all the files a dialog window would tell me: Warning: LF will be replaced by CRLF ..." for almost every file. So many files in fact, that I couldn't hit the OK button (it was off the screen) so I was stopped cold. After some research, I finally figured out what I had to do- disable the core.autocrlf config setting. It wasn't working until I did BOTH the --global and --system context.
I'm using Windows XP, hopefully this works for you:
and
- git config --global core.autocrlf false
To view your configuration settings, use:
- git config -l
Cheers,
-Kevin Wentworth
Tags for Avoiding New Line Errors using Git on Windows
Git | Software | Web Programming | Usage
Comments for this Posting
No comments. Be the first to post a reply.
Sorry, comments are closed for this posting.
Please Email Kevin if you have any questions. Thanks!
