From 7371951ab97eb5e5c97e720f9af3803fdd86bf6c Mon Sep 17 00:00:00 2001 From: Catalin Marinas Date: Tue, 26 Jul 2005 13:54:56 +0100 Subject: [PATCH] [AN] status for newly added files This patch enables displaying of the newly added files prefixed with either A or N. Signed-off-by: Catalin Marinas --- stgit/git.py | 1 + 1 file changed, 1 insertion(+) diff --git a/stgit/git.py b/stgit/git.py index e05f99a..634a903 100644 --- a/stgit/git.py +++ b/stgit/git.py @@ -356,6 +356,7 @@ def status(files = [], modified = False, new = False, deleted = False, if modified: filestat.append('M') if new: + filestat.append('A') filestat.append('N') if deleted: filestat.append('D') -- 2.11.0