From da2d81dd53014727d1c6ca7a299a121ada67624d Mon Sep 17 00:00:00 2001 From: Sup Yut Sum Date: Wed, 16 Apr 2014 18:30:40 +0800 Subject: [PATCH] Support action T (typechanged) Signed-off-by: Sup Yut Sum --- src/Git/TGitPath.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Git/TGitPath.cpp b/src/Git/TGitPath.cpp index e30b5666f..fe6b3d31c 100644 --- a/src/Git/TGitPath.cpp +++ b/src/Git/TGitPath.cpp @@ -121,6 +121,8 @@ int CTGitPath::ParserAction(BYTE action) m_Action|= LOGACTIONS_CACHE; if(action == 'C' ) m_Action|= LOGACTIONS_COPY; + if(action == 'T') + m_Action|= LOGACTIONS_MODIFIED; return m_Action; } -- 2.11.4.GIT