6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-04 14:31:49 +00:00

Remove verbose flags from git clone

This commit is contained in:
Grzegorz Dlugoszewski
2020-06-25 13:00:30 +02:00
parent 539c3beb90
commit 7c5abae165

View File

@@ -53,7 +53,7 @@ func Clone(opts *CloneOpts) (*Repo, error) {
return nil, nil
}
args := []string{"clone", "--progress", "-v"}
args := []string{"clone"}
if opts.Branch != "" {
args = append(args, "--branch", opts.Branch, "--single-branch")