Skip to content

Commit e4129b1

Browse files
dsh0416unknwon
andauthored
repo: add depth option when clone (#64)
Co-authored-by: ᴜɴᴋɴᴡᴏɴ <[email protected]>
1 parent 1ff5b56 commit e4129b1

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

.github/workflows/go.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,19 @@ jobs:
1111
name: Lint
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- name: Checkout code
15+
uses: actions/checkout@v2
1516
- name: Run golangci-lint
16-
uses: actions-contrib/golangci-lint@v1
17+
uses: golangci/golangci-lint-action@v2
18+
with:
19+
version: latest
20+
args: --timeout=30m
1721

1822
test:
1923
name: Test
2024
strategy:
2125
matrix:
22-
go-version: [1.14.x, 1.15.x]
26+
go-version: [1.14.x, 1.15.x, 1.16.x]
2327
platform: [ubuntu-latest, macos-latest, windows-latest]
2428
runs-on: ${{ matrix.platform }}
2529
steps:

repo.go

+5
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ type CloneOptions struct {
109109
Quiet bool
110110
// The branch to checkout for the working tree when Bare=false.
111111
Branch string
112+
// The number of revisions to clone.
113+
Depth uint64
112114
// The timeout duration before giving up for each shell command execution.
113115
// The default timeout duration will be used when not supplied.
114116
Timeout time.Duration
@@ -139,6 +141,9 @@ func Clone(url, dst string, opts ...CloneOptions) error {
139141
if !opt.Bare && opt.Branch != "" {
140142
cmd.AddArgs("-b", opt.Branch)
141143
}
144+
if opt.Depth > 0 {
145+
cmd.AddArgs("--depth", strconv.FormatUint(opt.Depth, 10))
146+
}
142147

143148
_, err = cmd.AddArgs(url, dst).RunWithTimeout(opt.Timeout)
144149
return err

repo_remote.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,9 @@ func RepoRemoveRemote(repoPath, name string, opts ...RemoveRemoteOptions) error
132132

133133
_, err := NewCommand("remote", "remove", name).RunInDirWithTimeout(opt.Timeout, repoPath)
134134
if err != nil {
135-
if strings.Contains(err.Error(), "fatal: No such remote") {
135+
// the error status may differ from git clients
136+
if strings.Contains(err.Error(), "error: No such remote") ||
137+
strings.Contains(err.Error(), "fatal: No such remote") {
136138
return ErrRemoteNotExist
137139
}
138140
return err

repo_test.go

+11
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,17 @@ func TestClone(t *testing.T) {
7777
Branch: "develop",
7878
},
7979
},
80+
{
81+
opt: CloneOptions{
82+
Depth: 1,
83+
},
84+
},
85+
{
86+
opt: CloneOptions{
87+
Branch: "develop",
88+
Depth: 1,
89+
},
90+
},
8091
}
8192
for _, test := range tests {
8293
t.Run("", func(t *testing.T) {

0 commit comments

Comments
 (0)