sapling/tests/test-remove-new.t

14 lines
263 B
Perl
Raw Normal View History

2010-08-30 08:08:18 +04:00
test that 'hg commit' does not crash if the user removes a newly added file
$ hg init
$ echo This is file a1 > a
$ hg add a
$ hg commit -m "commit #0"
2010-08-30 08:08:18 +04:00
$ touch b
$ hg add b
$ rm b
$ hg commit -A -m"comment #1"
2010-08-30 08:08:18 +04:00
removing b
nothing changed
2010-09-17 02:51:32 +04:00
[1]