Mercurial > hg
view tests/test-mq-qrename @ 8556:f5fae700cc00
inotify: set a flag so a failed inotify query doesn't get repeated.
If, for some reason, we can't get the inotify server to start, it's better to
disable inotify queries for the instance to avoid trying over and over to start
the server, which takes time. Just fall back on repo.status()
author | Nicolas Dumazet <nicdumz.commits@gmail.com> |
---|---|
date | Wed, 06 May 2009 01:40:03 +0900 |
parents | 05a682c8907d |
children | 0c944b7af564 |
line wrap: on
line source
#!/bin/sh echo "[extensions]" >> $HGRCPATH echo "mq=" >> $HGRCPATH hg init a cd a echo 'base' > base hg ci -Ambase -d '1 0' hg qnew -mmqbase mqbase hg qrename mqbase renamed mkdir .hg/patches/foo hg qrename renamed foo hg qseries ls .hg/patches/foo mkdir .hg/patches/bar hg qrename foo/renamed bar hg qseries ls .hg/patches/bar hg qrename bar/renamed baz hg qseries ls .hg/patches/baz cd .. echo % test patch being renamed before committed hg init b cd b hg qinit -c hg qnew x hg qrename y hg qcommit -m rename cd ..