From 73dd794c32c5b6a15f8d5f722397329b4078960a Mon Sep 17 00:00:00 2001 From: Frank Li Date: Thu, 24 Dec 2009 15:15:31 +0800 Subject: [PATCH] Use VC build tgit replace igit to fetch status Signed-off-by: Frank Li --- ext/tgit | 2 +- src/Git/Git.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/tgit b/ext/tgit index 22a773d03..c59dfb7f3 160000 --- a/ext/tgit +++ b/ext/tgit @@ -1 +1 @@ -Subproject commit 22a773d03b456672f05681d71e5c628f789448cf +Subproject commit c59dfb7f304ec5c3cd1c083ed96d71b6c4ad26ac diff --git a/src/Git/Git.cpp b/src/Git/Git.cpp index 46bfb662d..5e0810bde 100644 --- a/src/Git/Git.cpp +++ b/src/Git/Git.cpp @@ -1157,11 +1157,11 @@ BOOL CGit::EnumFiles(const TCHAR *pszProjectPath, const TCHAR *pszSubPath, unsig CString sSubPath = pszSubPath; sSubPath.Replace(_T('\\'), _T('/')); - cmd.Format(_T("igit.exe \"%s\" status %s \"%s\""), sProjectPath, sMode, sSubPath); + cmd.Format(_T("tgit.exe statusex \"%s\" status %s \"%s\""), sProjectPath, sMode, sSubPath); } else { - cmd.Format(_T("igit.exe \"%s\" status %s"), sProjectPath, sMode); + cmd.Format(_T("tgit.exe statusex \"%s\" status %s"), sProjectPath, sMode); } //OutputDebugStringA("---");OutputDebugStringW(cmd);OutputDebugStringA("\r\n"); -- 2.11.4.GIT