From: Gustav HÃ¥llberg Date: Mon, 25 Jan 2010 10:17:58 +0000 (+0100) Subject: stgit.el: Run "git update-index --refresh" before redrawing work tree status X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/commitdiff_plain/0b71b4dc1acf1770c3bd7796487232feb936c99e stgit.el: Run "git update-index --refresh" before redrawing work tree status This prevents unchanged files from showing up as "Modified" in the work tree. Signed-off-by: Gustav HÃ¥llberg --- 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"))