From dee9f17b595ea903a982d31d1124b302bb17e2ff Mon Sep 17 00:00:00 2001 From: root Date: Wed, 17 Jul 2013 00:58:52 -0700 Subject: Wed Jul 17 00:58:51 PDT 2013 --- ...1-Cause-qgit-to-use-git-config-everywhere.patch | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 community/qgit/0001-Cause-qgit-to-use-git-config-everywhere.patch (limited to 'community/qgit/0001-Cause-qgit-to-use-git-config-everywhere.patch') diff --git a/community/qgit/0001-Cause-qgit-to-use-git-config-everywhere.patch b/community/qgit/0001-Cause-qgit-to-use-git-config-everywhere.patch deleted file mode 100644 index a0c7e6c4d..000000000 --- a/community/qgit/0001-Cause-qgit-to-use-git-config-everywhere.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 50b7344bc2cc941a43b3adfaebdc96dd1935e747 Mon Sep 17 00:00:00 2001 -From: Jonathan Ross Rogers -Date: Mon, 9 May 2011 18:16:29 -0400 -Subject: [PATCH] Cause qgit to use "git config" everywhere. - -Whenever starting up qgit, it pops up a dialog showing that git -complained about the obsolete command "repo-config". This patch -replaces remaining calls to "git repo-config" with "git config". - -Signed-off-by: Jonathan Ross Rogers ---- - src/git.cpp | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/git.cpp b/src/git.cpp -index 50e6dd3..8e9365c 100644 ---- a/src/git.cpp -+++ b/src/git.cpp -@@ -427,7 +427,7 @@ void Git::setTextCodec(QTextCodec* tc) { - if (name == "Big5-HKSCS") - name = "Big5"; - -- run("git repo-config i18n.commitencoding " + name); -+ run("git config i18n.commitencoding " + name); - } - - QTextCodec* Git::getTextCodec(bool* isGitArchive) { -@@ -437,7 +437,7 @@ QTextCodec* Git::getTextCodec(bool* isGitArchive) { - return NULL; - - QString runOutput; -- if (!run("git repo-config --get i18n.commitencoding", &runOutput)) -+ if (!run("git config --get i18n.commitencoding", &runOutput)) - return NULL; - - if (runOutput.isEmpty()) // git docs says default is utf-8 --- -1.7.5 - -- cgit v1.2.3-54-g00ecf