mercurial/cmdutil.py
changeset 49097 3f6ef67e7a60
parent 49096 9be7da341885
child 49139 ea98850a136e
equal deleted inserted replaced
49096:9be7da341885 49097:3f6ef67e7a60
  3750     for f in actions[b'add'][0]:
  3750     for f in actions[b'add'][0]:
  3751         # Don't checkout modified files, they are already created by the diff
  3751         # Don't checkout modified files, they are already created by the diff
  3752         if f in newlyaddedandmodifiedfiles:
  3752         if f in newlyaddedandmodifiedfiles:
  3753             continue
  3753             continue
  3754 
  3754 
       
  3755         if interactive:
       
  3756             choice = repo.ui.promptchoice(
       
  3757                 _(b"add new file %s (Yn)?$$ &Yes $$ &No") % uipathfn(f)
       
  3758             )
       
  3759             if choice != 0:
       
  3760                 continue
  3755         prntstatusmsg(b'add', f)
  3761         prntstatusmsg(b'add', f)
  3756         checkout(f)
  3762         checkout(f)
  3757         repo.dirstate.set_tracked(f)
  3763         repo.dirstate.set_tracked(f)
  3758 
  3764 
  3759     for f in actions[b'undelete'][0]:
  3765     for f in actions[b'undelete'][0]: