I have a huge Mercurial Repository with a gerated file called ".version". This file is automatically generated with a hook each time a commit is made or an update is done.
However this file is generated and NOT versioned (this always resulted in conflicts with other project developers), I want it always to be packaged when I do a
hg archive
the help page about hg archive tells that there is an option
hg archive -I .version
but is there maybe a way to perform this inclusion automatically?
I found no option relating to this in the manpage about the hgrc-file.
Any suggestions?