diff mercurial/context.py @ 47594:0cef28b121a4

context: use `dirstate.set_tracked` in `context.add` This is the new shiny API. Differential Revision: https://phab.mercurial-scm.org/D11014
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 08 Jul 2021 00:58:44 +0200
parents 04d1f17f49e7
children 14e2f4bd5f16
line wrap: on
line diff
--- a/mercurial/context.py	Thu Jul 08 03:03:34 2021 +0200
+++ b/mercurial/context.py	Thu Jul 08 00:58:44 2021 +0200
@@ -1701,12 +1701,8 @@
                         % uipath(f)
                     )
                     rejected.append(f)
-                elif ds[f] in b'amn':
+                elif not ds.set_tracked(f):
                     ui.warn(_(b"%s already tracked!\n") % uipath(f))
-                elif ds[f] == b'r':
-                    ds.normallookup(f)
-                else:
-                    ds.add(f)
             return rejected
 
     def forget(self, files, prefix=b""):