Xavier Maillard <[EMAIL PROTECTED]> writes: > Hi [email protected], > > What is the current way to start a complete bzr project directly > through DVC ? > > I used to remember how it was done with Xtla but I miserably fail > with DVC. > > Also, is there a notion of "archive" in bzr or not ?
With bzr you have several alternative ways to store your repository. The easiest is "bzr init". This way just creates a .bzr directory that holds the repository. In DVC, just do M-x bzr-init The page http://bazaar-vcs.org/SharedRepositoryTutorial explains, how to create and use an archive on a different location. The following help output describes what I use for a central repository: % bzr help init-repo usage: bzr init-repository LOCATION aliases: init-repo Create a shared repository to hold branches. New branches created under the repository directory will store their revisions in the repository, not in the branch directory, if the branch format supports shared storage. example: bzr init-repo repo bzr init repo/trunk bzr checkout --lightweight repo/trunk trunk-checkout cd trunk-checkout (add files here) The commands above can be invoked via DVC: M-x bzr-start-project Stefan. _______________________________________________ Dvc-dev mailing list [email protected] https://mail.gna.org/listinfo/dvc-dev
