##// END OF EJS Templates
Make 'hg sign' behave like other commands: Default to current parent.
Make 'hg sign' behave like other commands: Default to current parent.

File last commit:

r3853:c0b44915 default
r3916:b1806b21 default
Show More
test-hup
16 lines | 149 B | text/plain | TextLexer
#!/bin/sh
hg init
mkfifo p
hg serve --stdio < p &
P=$!
(echo lock; echo addchangegroup; sleep 5) > p &
Q=$!
sleep 3
kill -HUP $P
wait
ls -R .hg