There are a lot of files that a Mercurial repo will use for configuration or keep track of state, but here are the ones that have the best chance to come in handy:
.hg/last-message.txt -- used by hg commit to store backup of the commit message in case the commit fails.
Example:
My commit message!
.hg/localtags -- define local tags which are not shared among repositories.
Example:
There are a lot of files that a Mercurial repo will use for configuration or keep track of state, but here are the ones that have the best chance to come in handy:
.hg/last-message.txt-- used byhg committo store backup of the commit message in case the commit fails. Example:.hg/localtags-- define local tags which are not shared among repositories. Example:.hgignore-- regular expressions that describe file names that should be ignored by hg. Example:.hg/hgrc-- defaults and configuration values for mercurial. Example:.hgsub-- locations of all subrepositories and where subrepository checkouts came from. Example:.hgtags-- contains changeset hash values and text tag names Example(same format as localtags):