From d3c9634eacdcaa71cbd69a160e6f4e80ddb7ab63 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Thu, 9 Apr 2009 13:29:57 +0200 Subject: [PATCH] git-svn: always initialize with core.autocrlf=false 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 Acked-by: Eric Wong Signed-off-by: Junio C Hamano --- git-svn.perl | 1 + 1 file changed, 1 insertion(+) diff --git a/git-svn.perl b/git-svn.perl index bc3ba064e4..c5965c9aaf 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -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) { -- 2.11.4.GIT