Is there a better way extract the current revision hash in Mercurial than
hg log -l1|grep changeset|cut -d: -f3
?
Part of my webapp deployment script "tags" the uploaded app tarball with its unique revision hash.
|
|
|
Try:
Example:
|
|||||||||||||
|
See the docs, paragraphs "The basics of templating" and following. |
|||||||||||
|
This will output the long hash, with a plus if there are uncommitted changes. |
|||
|
|
|
You can use --template with the parent command, I use this to get the long hash:
|
|||
|
|