How about an "hg qstatus"?

Bela Babik teki321 at gmail.com
Tue Apr 29 19:55:04 CDT 2008


For non applied patches I am using the following script (on Windows with msys):

http://rafb.net/p/BFnVs294.html

Called from this bash script:
#!/bin/sh
PARAMS=
if [ "x$1" = "x-n" ]; then
	PARAMS=$1
	shift
fi

LST=$1
if [ "x$LST" = "x" ]; then
	LST=$(hg qseries)
fi

for act in $LST; do pst.py $PARAMS .hg/patches/$act; done


More information about the Mercurial mailing list