From 68fffa842beba39e994b615665b6ebe01ff2a5ec Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Thu, 6 Oct 2011 11:30:44 +0200 Subject: [PATCH] Git: Do NOT append .exe on WIN32 msysGit uses git.cmd --- src/plugins/git/gitsettings.cpp | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/src/plugins/git/gitsettings.cpp b/src/plugins/git/gitsettings.cpp index 1868b1f..393c0cb 100644 --- a/src/plugins/git/gitsettings.cpp +++ b/src/plugins/git/gitsettings.cpp @@ -55,12 +55,11 @@ GitSettings::GitSettings() setSettingsGroup(QLatin1String("Git")); #ifdef Q_OS_WIN - declareKey(binaryPathKey, QLatin1String("git.exe")); declareKey(timeoutKey, 60); #else - declareKey(binaryPathKey, QLatin1String("git")); declareKey(timeoutKey, 30); #endif + declareKey(binaryPathKey, QLatin1String("git")); declareKey(adoptPathKey, false); declareKey(pathKey, QString()); declareKey(pullRebaseKey, false); -- 1.7.6.msysgit.0