Mercurial > hg
comparison tests/test-revert.t @ 14755:6ba51c81ff75 stable
revert: improve hints on abort when reverting to parent without --all
BEFORE:
$ hg revert
abort: no files or directories specified
(use --all to discard all changes)
AFTER:
Uncommitted changes (using --all *will* nuke edits):
$ hg revert
abort: no files or directories specified
(uncommitted changes, use --all to discard all changes)
Clean working directory (using --all won't discard anything):
$ hg revert
abort: no files or directories specified
(use --all to revert all files)
author | Adrian Buehlmann <adrian@cadifra.com> |
---|---|
date | Sun, 26 Jun 2011 01:13:30 +0200 |
parents | cae09a39b2d2 |
children | aab323df2c44 |
comparison
equal
deleted
inserted
replaced
14754:189a7562d72e | 14755:6ba51c81ff75 |
---|---|
8 | 8 |
9 nothing changed | 9 nothing changed |
10 | 10 |
11 $ hg revert | 11 $ hg revert |
12 abort: no files or directories specified | 12 abort: no files or directories specified |
13 (use --all to discard all changes) | 13 (use --all to revert all files) |
14 [255] | 14 [255] |
15 | 15 |
16 $ echo 123 > b | 16 $ echo 123 > b |
17 | 17 |
18 should show b unknown | 18 should show b unknown |