From: Catalin Marinas Date: Tue, 26 Jul 2005 12:54:56 +0000 (+0100) Subject: [AN] status for newly added files X-Git-Tag: v0.5~12 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/7371951ab97eb5e5c97e720f9af3803fdd86bf6c [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 --- 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')