Documentation
¶
Index ¶
- func GitCheckoutBranch(projectPath, branchName, remote string) error
- func GitCheckoutBranchLocal(projectPath, branchName string) error
- func GitCheckoutRef(projectPath, reference string) error
- func GitCloneProject(repoUrl, defaultRemoteName, destPath string) error
- func GitFetchRemote(projectPath, remote string) error
- func GitInitSubmodules(projectPath string) error
- func GitSetTrackingRemoteBranch(projectPath, branchName, remote string) error
- func GitSetupSparseCheckout(projectPath string, sparseCheckoutDir string) error
- func GitSparseCloneProject(repoUrl, defaultRemoteName, destPath string) error
- type GitRefType
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GitCheckoutBranch ¶ added in v0.12.0
func GitCheckoutBranchLocal ¶ added in v0.14.0
func GitCheckoutRef ¶ added in v0.12.0
func GitCloneProject ¶
GitCloneProject constructs a command-line string for cloning a git project, and delegates execution to the os/exec package.
func GitFetchRemote ¶ added in v0.8.0
func GitInitSubmodules ¶ added in v0.23.0
func GitSetTrackingRemoteBranch ¶ added in v0.14.0
func GitSetupSparseCheckout ¶ added in v0.22.0
func GitSparseCloneProject ¶ added in v0.22.0
Types ¶
type GitRefType ¶ added in v0.21.1
type GitRefType int64
const ( GitRefUnknown GitRefType = iota GitRefLocalBranch GitRefRemoteBranch GitRefTag GitRefHash )
func GitResolveReference ¶ added in v0.21.1
func GitResolveReference(projectPath, remote, revision string) (GitRefType, error)
GitResolveReference determines if the provided revision is a (local) branch, tag, or hash for use when preparing a cloned repository. This is done by using `git show-ref` for branches/tags and `git rev-parse` for checking whether a commit hash exists. If the reference type cannot be determined, GitRefUnknown is returned.
Click to show internal directories.
Click to hide internal directories.