From 67aa190396e686658aa72b7c3d91c6bed2d010af Mon Sep 17 00:00:00 2001 From: Bruce Williams Date: Sun, 14 Mar 2010 01:19:13 -0800 Subject: Working Bazaar support & docs --- README.BZR.markdown | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 README.BZR.markdown (limited to 'README.BZR.markdown') diff --git a/README.BZR.markdown b/README.BZR.markdown new file mode 100644 index 0000000..a7494db --- /dev/null +++ b/README.BZR.markdown @@ -0,0 +1,38 @@ +Using vcsrepo with Bazaar +========================= + +To create a blank repository +---------------------------- + +Define a `vcsrepo` without a `source` or `revision`: + + vcsrepo { "/path/to/repo": + ensure => present, + provider => bzr + } + +To branch from an existing repository +-------------------------------------: + +Provide the `source` location: + + vcsrepo { "/path/to/repo": + ensure => present, + provider => bzr, + source => 'lp:myproj' + } + +For a specific revision, use `revision` with a valid revisionspec +(see `bzr help revisionspec` for more information on formatting a revision): + + vcsrepo { "/path/to/repo": + ensure => present, + provider => bzr, + source => 'lp:myproj', + revision => 'menesis@pov.lt-20100309191856-4wmfqzc803fj300x' + } + +More Examples +------------- + +For examples you can run, see `examples/bzr/` -- cgit v1.2.3