-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscm.php
29 lines (22 loc) · 899 Bytes
/
scm.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php return array(
// SCM repository
//////////////////////////////////////////////////////////////////////
// The SCM used (supported: "git", "svn")
'scm' => 'git',
// The SSH/HTTPS address to your repository
// Example: https://github.com/vendor/website.git
'repository' => '[email protected]:mykebates/wcstl.git',
// The repository credentials : you can leave those empty
// if you're using SSH or if your repository is public
// In other cases you can leave this empty too, and you will
// be prompted for the credentials on deploy
'username' => '',
'password' => '',
// The branch to deploy
'branch' => 'master',
// Whether your SCM should do a "shallow" clone of the repository
// or not – this means a clone with just the latest state of your
// application (no history)
// If you're having problems cloning, try setting this to false
'shallow' => true,
);