forked from aquasecurity/fanal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expose git.CloneOptions when fetching remote artifacts
Fixes aquasecurity#167
- Loading branch information
Showing
4 changed files
with
152 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package remote | ||
|
||
import ( | ||
git "github.com/go-git/go-git/v5" | ||
) | ||
|
||
type Remote struct { | ||
ParentDirectory string | ||
IsBare bool | ||
Commit string | ||
CloneOpts *git.CloneOptions | ||
} | ||
|
||
func NewGitRemote(parentDirectory string, isBare bool, commit string, cloneOpts *git.CloneOptions) (Remote, error) { | ||
err := cloneOpts.Validate() | ||
if err != nil { | ||
return Remote{}, err | ||
} | ||
return Remote{ | ||
ParentDirectory: parentDirectory, | ||
IsBare: isBare, | ||
Commit: commit, | ||
CloneOpts: cloneOpts, | ||
}, nil | ||
} |