summaryrefslogtreecommitdiff
path: root/examples/git/shallow-clone-with-just-one-commit.pp
blob: cd5a05db983c9fa9c059e9ba16dfc4b81158dd3e (plain)
1
2
3
4
5
6
7
vcsrepo { '/tmp/git':
    ensure   => 'present',
    provider => 'git',
    source   => 'https://github.com/git/git.git',
    branch   => 'v2.2.0',
    depth    => 1,
}