summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b6c2991)
raw | patch | inline | side by side (parent: b6c2991)
author | Johannes Schindelin <johannes.schindelin@gmx.de> | |
Thu, 9 Apr 2009 11:29:57 +0000 (13:29 +0200) | ||
committer | Junio 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 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 | patch | blob | history |
diff --git a/git-svn.perl b/git-svn.perl
index bc3ba064e4343fd84535e38ecfd7ac691a644248..c5965c9aafe8d5f990e64e88cea1061f84584b58 100755 (executable)
--- a/git-svn.perl
+++ b/git-svn.perl
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) {