##// END OF EJS Templates
revert: don't assume ignored files will be returned in the unknown list...
revert: don't assume ignored files will be returned in the unknown list That's just an artifact of the current implementation, and I'll change that soon. Bonus points: - we don't care about the unknown list at all - we don't print an extra message if we try to revert a removed file that is not present in the target revision

File last commit:

r5683:396c7010 default
r6031:73833847 default
Show More
test-mq-symlinks
34 lines | 512 B | text/plain | TextLexer
#!/bin/sh
echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH
cat >> readlink.py <<EOF
import errno, os, sys
for f in sys.argv[1:]:
try:
print f, '->', os.readlink(f)
except OSError, err:
if err.errno != errno.EINVAL: raise
print f, 'not a symlink'
EOF
hg init
hg qinit
hg qnew base.patch
echo a > a
echo b > b
hg add a b
hg qrefresh
python readlink.py a
hg qnew symlink.patch
rm a
ln -s b a
hg qrefresh --git
python readlink.py a
hg qpop
hg qpush
python readlink.py a