From 0b71b4dc1acf1770c3bd7796487232feb936c99e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gustav=20H=C3=A5llberg?= Date: Mon, 25 Jan 2010 11:17:58 +0100 Subject: [PATCH] stgit.el: Run "git update-index --refresh" before redrawing work tree status MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This prevents unchanged files from showing up as "Modified" in the work tree. Signed-off-by: Gustav HÃ¥llberg --- contrib/stgit.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/stgit.el b/contrib/stgit.el index 3b5538e..4af6243 100644 --- a/contrib/stgit.el +++ b/contrib/stgit.el @@ -742,6 +742,8 @@ at point." (let ((standard-output (current-buffer))) (apply 'stgit-run-git (cond ((eq patchsym :work) + (let (standard-output) + (stgit-run-git "update-index" "--refresh")) `("diff-files" "-0" ,@args)) ((eq patchsym :index) `("diff-index" ,@args "--cached" "HEAD")) -- 2.11.0