How to enforce remote gnupg signing of Mercurial repository only when new tags are created?

You could do it on the server with a pretxnchangegroup hook. More efficient in-process in python, but off the top of my head in shell you'd do.

You could do it on the server with a pretxnchangegroup hook. More efficient in-process in python, but off the top of my head in shell you'd do: In your hgrc: hook pretxnchangegroup = all-tags-checked. Sh and in all-tags-checked.Sh: for therev in $(seq $(hg id -n -r $HG_NODE) $(hd id -n -r tip)) ; do if hg log --template '{files}' -r $therev | grep --quiet '^.

Hgtags' ; then if hg sigcheck $therev | grep --quiet '^No valid' ; then exit 1 fi fi done That goes through every new changeset and checks to make sure that if it edits . Hgtags (add a tag) then it must also be signed.Is that what you're looking for?

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions