diff options
author | Paul Allen <pallen@perforce.com> | 2014-06-24 13:57:30 +0100 |
---|---|---|
committer | Paul Allen <pallen@perforce.com> | 2014-06-24 13:57:30 +0100 |
commit | e1aa644dd075c275dd22d85cdc03c88dda029d87 (patch) | |
tree | b4c1a055758bce7e019da8c152d9825c048d185e /README.markdown | |
parent | 457035ec1c15df0d53abf7232dad63b2722b1720 (diff) |
Support streams and fix Marshal for 'p4 cstat'
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/README.markdown b/README.markdown index 575950c..d977886 100644 --- a/README.markdown +++ b/README.markdown @@ -346,15 +346,15 @@ defining `p4config`. If a configuration is defined, then the environment variab #####To create/update and sync a Perforce workspace -To sync a depot path to head (latest): +To sync a depot path to head, ensure `latest`: vcsrepo { "/path/to/repo": - ensure => present, + ensure => latest, provider => p4, source => '//depot/branch/...' } -For a specific changelist, use `revision`: +For a specific changelist, ensure `present` and specify a `revision`: vcsrepo { "/path/to/repo": ensure => present, |