equal
deleted
inserted
replaced
4143 for f in modified: |
4143 for f in modified: |
4144 ui.warn(_('not removing %s: file is modified (use -f' |
4144 ui.warn(_('not removing %s: file is modified (use -f' |
4145 ' to force removal)\n') % m.rel(f)) |
4145 ' to force removal)\n') % m.rel(f)) |
4146 ret = 1 |
4146 ret = 1 |
4147 for f in added: |
4147 for f in added: |
4148 ui.warn(_('not removing %s: file has been marked for add (use -f' |
4148 ui.warn(_('not removing %s: file has been marked for add' |
4149 ' to force removal)\n') % m.rel(f)) |
4149 ' (use forget to undo)\n') % m.rel(f)) |
4150 ret = 1 |
4150 ret = 1 |
4151 |
4151 |
4152 for f in sorted(list): |
4152 for f in sorted(list): |
4153 if ui.verbose or not m.exact(f): |
4153 if ui.verbose or not m.exact(f): |
4154 ui.status(_('removing %s\n') % m.rel(f)) |
4154 ui.status(_('removing %s\n') % m.rel(f)) |