Hello Dan,
So what would the equivalent of tagging and releasing a codebase? And if something in production went wonky, how would I check out the equivalent codebase in a working copy to diagnose the problem?
This page here, althought very Haskell oriented, has a couple of tips: http://www.haskell.org/haskellwiki/How_to_write_a_Haskell_program#Releases (see also sections 2.10 and 2.10.2) Summary:
darcs tag <version>
then
darcs dist -d <release-name-and-version>
To get a specific tag:
darcs pull --partial -t <version>
Alistair _______________________________________________ darcs-users mailing list [email protected] http://lists.osuosl.org/mailman/listinfo/darcs-users
