6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-06 12:12:58 +00:00

Implement ignoreExisting flag and set default branch also for dump cloning

This commit is contained in:
Grzegorz Dlugoszewski
2020-06-18 17:30:42 +02:00
parent 330cbf5840
commit e800652a6e
2 changed files with 7 additions and 0 deletions

View File

@@ -73,6 +73,11 @@ func Clone(opts *CloneOpts) (*Repo, error) {
repo, err := git.PlainClone(opts.Path, false, gitOpts)
if err != nil {
if opts.IgnoreExisting && errors.Is(err, git.ErrRepositoryAlreadyExists) {
return nil, nil
}
return nil, errors.Wrap(err, "Failed cloning repo")
}