eric7/Plugins/VcsPlugins/vcsGit/GitStatusMonitorThread.py

branch
eric7
changeset 8620
84f7f7867b5f
parent 8618
356a2f1b04b0
child 8881
54e42bc2437a
--- a/eric7/Plugins/VcsPlugins/vcsGit/GitStatusMonitorThread.py	Mon Sep 20 07:29:27 2021 +0200
+++ b/eric7/Plugins/VcsPlugins/vcsGit/GitStatusMonitorThread.py	Mon Sep 20 19:47:18 2021 +0200
@@ -51,6 +51,8 @@
             <li>"R" path was deleted and then re-added</li>
             <li>"U" path needs an update</li>
             <li>"Z" path contains a conflict</li>
+            <li>"?" path is not tracked</li>
+            <li>"!" path is missing</li>
             <li>" " path is back at normal</li>
         </ul>
         
@@ -107,6 +109,8 @@
                 else:
                     status = flags[1]
                 states[name] = status
+            elif flags == "??":
+                states[name] = "?"
         
         # step 2: collect the status to be reported back
         for name in states:

eric ide

mercurial