##// END OF EJS Templates
zsh: allow 'hg clone' to complete paths listed in ~/.hgrc
zsh: allow 'hg clone' to complete paths listed in ~/.hgrc

File last commit:

r1449:30146be3 default
r1486:d7809d6e default
Show More
test-revert
24 lines | 247 B | text/plain | TextLexer
#!/bin/sh
hg init
echo 123 > a
echo 123 > c
hg add a c
hg commit -m "first" -d "0 0" a c
echo 123 > b
hg status
echo 12 > c
hg status
hg add b
hg status
hg rm a
hg status
hg revert a
hg status
hg revert b
hg status
hg revert c
hg status
ls
true