fetcher git: override global git crlf settings. prevents some sync loops

This commit is contained in:
Hylke Bons 2012-04-26 18:32:00 +01:00
parent 3024a73c4c
commit 8ee99fa5a0

View file

@ -293,8 +293,11 @@ namespace SparkleLib.Git {
string n = Environment.NewLine;
config = config.Replace ("[core]" + n,
"[core]" + n + "\tquotepath = false" + n + // Show special characters in the logs
"[core]" + n +
"\tquotepath = false" + n + // Show special characters in the logs
"\tpackedGitLimit = 128m" + n +
"\tautocrlf = false" + n +
"\tsafecrlf = false" + n +
"\tpackedGitWindowSize = 128m" + n);
config = config.Replace ("[remote \"origin\"]" + n,