Sometimes I need to provide a version of my code to other employees without giving them access to the history (everything inside the .hg directory). I do this by cloning my repository, updating the clone to the required version and deleting the .hg directory.
Is there a way to include some information in this export operation that will later tell me which version I actually passed them? For example, let's say automatically, including a hash in a file or something like that? What is the canonical way to achieve something similar in Mercurial?
source share