summaryrefslogtreecommitdiff
path: root/README.HG.markdown
diff options
context:
space:
mode:
authorBruce Williams <bruce@codefluency.com>2010-03-13 17:32:17 -0800
committerBruce Williams <bruce@codefluency.com>2010-03-13 17:32:17 -0800
commitc714947908b69c538ea9d050d4375e2b3f19e7ac (patch)
tree1a464a8d7534e43e30d09dd914cbf231f1a29601 /README.HG.markdown
parent6adc8745c6565391f5da534306c3ec206da9dc21 (diff)
Support Mercurial tags, restructure examples
Diffstat (limited to 'README.HG.markdown')
-rw-r--r--README.HG.markdown19
1 files changed, 14 insertions, 5 deletions
diff --git a/README.HG.markdown b/README.HG.markdown
index 9585ea4..e96db89 100644
--- a/README.HG.markdown
+++ b/README.HG.markdown
@@ -7,7 +7,7 @@ To create a blank repository
Define a `vcsrepo` without a `source` or `revision`:
vcsrepo { "/path/to/repo":
- ensure => present,
+ ensure => present,
provider => hg
}
@@ -17,16 +17,25 @@ To clone/pull & update a repository
To get the default branch tip:
vcsrepo { "/path/to/repo":
- ensure => present,
+ ensure => present,
provider => hg,
- source => "http://hg.example.com/myrepo"
+ source => "http://hg.example.com/myrepo"
}
For a specific changeset, use `revision`:
vcsrepo { "/path/to/repo":
- ensure => present,
+ ensure => present,
provider => hg,
- source => "http://hg.example.com/myrepo"
+ source => "http://hg.example.com/myrepo"
revision => '21ea4598c962'
}
+
+You can also set `revision` to a tag:
+
+ vcsrepo { "/path/to/repo":
+ ensure => present,
+ provider => hg,
+ source => "http://hg.example.com/myrepo"
+ revision => '1.1.2'
+ }