From 29f9e10ed4c1650d7fdcab8e3fb24b2cbbf5a0d5 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Mon, 26 Nov 2018 11:51:22 +1100 Subject: rtemstoolkit/git: Ignore untracked files in the dirty state. --- rtemstoolkit/git.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rtemstoolkit/git.py b/rtemstoolkit/git.py index e1dd029..b92391f 100644 --- a/rtemstoolkit/git.py +++ b/rtemstoolkit/git.py @@ -152,7 +152,10 @@ class repo: def dirty(self): _status = self.status() - return not (len(_status) == 1 and 'branch' in _status) + status_keys = list(_status.keys()) + if 'untracked' in status_keys: + status_keys.remove('untracked') + return not (len(status_keys) == 1 and 'branch' in _status) def valid(self): if path.exists(self.path): -- cgit v1.2.3