comparison tests/test-copy2 @ 4374:de612b5f8d59

Make copy --after work for files that have been hg added.
author Brendan Cully <brendan@kublai.com>
date Tue, 24 Apr 2007 18:43:18 -0700
parents c0b449154a90
children de8ec7e1753a
comparison
equal deleted inserted replaced
4373:109077e7048d 4374:de612b5f8d59
36 hg debugrename bar 36 hg debugrename bar
37 37
38 echo "# should show no copies" 38 echo "# should show no copies"
39 hg debugstate|grep '^copy' 39 hg debugstate|grep '^copy'
40 40
41 echo "# copy --after on an added file"
42 cp bar baz
43 hg add baz
44 hg cp -A bar baz
45 hg st -C
46
41 exit 0 47 exit 0