Code

git-svn: always initialize with core.autocrlf=false
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Thu, 9 Apr 2009 11:29:57 +0000 (13:29 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 12 Apr 2009 05:21:59 +0000 (22:21 -0700)
It has been reported time and time again in relation to msysGit that
git-svn does not work well when core.autocrlf has any value other than
'false'.  So let's make it so by default.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Acked-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-svn.perl

index bc3ba064e4343fd84535e38ecfd7ac691a644248..c5965c9aafe8d5f990e64e88cea1061f84584b58 100755 (executable)
@@ -328,6 +328,7 @@ sub do_git_init_db {
                command_noisy(@init_db);
                $_repository = Git->repository(Repository => ".git");
        }
+       command_noisy('config', 'core.autocrlf', 'false');
        my $set;
        my $pfx = "svn-remote.$Git::SVN::default_repo_id";
        foreach my $i (keys %icv) {