mercurial/commands.py
changeset 2043 968f036f93a4
parent 2042 a514c7509fa9
child 2044 b343e7d454b4
equal deleted inserted replaced
2042:a514c7509fa9 2043:968f036f93a4
  2387         #   action if in target manifest
  2387         #   action if in target manifest
  2388         #   action if not in target manifest
  2388         #   action if not in target manifest
  2389         #   make backup if in target manifest
  2389         #   make backup if in target manifest
  2390         #   make backup if not in target manifest
  2390         #   make backup if not in target manifest
  2391         (modified, revert, remove, True, True),
  2391         (modified, revert, remove, True, True),
  2392         (added, revert, forget, True, True),
  2392         (added, revert, forget, True, False),
  2393         (removed, undelete, None, False, False),
  2393         (removed, undelete, None, False, False),
  2394         (deleted, revert, remove, False, False),
  2394         (deleted, revert, remove, False, False),
  2395         (unknown, add, None, True, False),
  2395         (unknown, add, None, True, False),
  2396         (target_only, add, None, False, False),
  2396         (target_only, add, None, False, False),
  2397         )
  2397         )