blob: 2aebbc77161a522cc15c0d8f87e65d67399af48f (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
package git
import (
"gopkg.in/src-d/go-git.v3/clients/common"
"gopkg.in/src-d/go-git.v4/core"
)
const (
// DefaultRemoteName name of the default Remote, just like git command
DefaultRemoteName = "origin"
)
// RepositoryCloneOptions describe how a clone should be perform
type RepositoryCloneOptions struct {
// The (possibly remote) repository URL to clone from
URL string
// Auth credentials, if required, to uses with the remote repository
Auth common.AuthMethod
// Name of the remote to be added, by default `origin`
RemoteName string
// Remote branch to clone
ReferenceName core.ReferenceName
// Fetch only ReferenceName if true
SingleBranch bool
// Limit fetching to the specified number of commits
Depth int
}
func (o *RepositoryCloneOptions) Default() {
if o.RemoteName == "" {
o.RemoteName = DefaultRemoteName
}
if o.ReferenceName == "" {
o.ReferenceName = core.HEAD
}
}
// RemoteFetchOptions describe how a fetch should be perform
type RemoteFetchOptions struct {
// Remote branchs to fetch
References []*core.Reference
// Limit fetching to the specified number of commits
Depth int
}
|