##// END OF EJS Templates
parents: make it match the doc when called on a file...
parents: make it match the doc when called on a file parents used to return the parent revision of the last revision updating selected file, instead of the updating revision itself.

File last commit:

r3918:a413f5c2 default
r5298:cba2a689 default
Show More
test-hup
13 lines | 159 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
echo .hg/* .hg/store/*