git
Git as a Dagger Module
Installation
dagger install github.com/sagikazarmark/shykes-git@4f46bfde5735e17612316a30bc5a43c3eefd6da2
Entrypoint
Return Type
Git !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
sshKey | Secret | - | SSH key to use for git operations. |
Example
func (m *myModule) example() *Git {
return dag.
Git()
}
Types
Git 🔗
load() 🔗
Load the contents of a git repository
Return Type
Repo !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | The source directory to load. It must contain a `.git` directory, or be one. |
worktree | Directory | - | A separate worktree, if needed. |
Example
func (m *myModule) example(source *Directory) *GitRepo {
return dag.
Git().
Load(source)
}
init() 🔗
Initialize a git repository
Return Type
Repo !
Example
func (m *myModule) example() *GitRepo {
return dag.
Git().
Init()
}
clone() 🔗
Clone a remote git repository
Return Type
Repo !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
url | String ! | - | No description provided |
Example
func (m *myModule) example(url string) *GitRepo {
return dag.
Git().
Clone(url)
}
remote() 🔗
Initialize a reference to a git remote
Return Type
Remote !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
url | String ! | - | No description provided |
Example
func (m *myModule) example(url string) *GitRemote {
return dag.
Git().
Remote(url)
}
Repo 🔗
A git repository
state() 🔗
Return Type
Directory !
Example
func (m *myModule) example(url string) *Directory {
return dag.
Git().
Clone(url).
State()
}
worktree() 🔗
Return Type
Directory !
Example
func (m *myModule) example(url string) *Directory {
return dag.
Git().
Clone(url).
Worktree()
}
inspect() 🔗
Open an interactive terminal, with the repository available for inspection
Return Type
Terminal !
Example
func (m *myModule) example(url string) *Terminal {
return dag.
Git().
Clone(url).
Inspect()
}
directory() 🔗
Combine the repository’s worktree and state into a single directory.
The state is copied to `.git`
Return Type
Directory !
Example
func (m *myModule) example(url string) *Directory {
return dag.
Git().
Clone(url).
Directory()
}
checkout() 🔗
Checkout the given ref into the worktree
Return Type
Repo !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
ref | String ! | - | The git ref to checkout |
Example
func (m *myModule) example(url string, ref string) *GitRepo {
return dag.
Git().
Clone(url).
Checkout(ref)
}
withState() 🔗
Set the git state directory
Return Type
Repo !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
dir | Directory ! | - | No description provided |
Example
func (m *myModule) example(url string, dir *Directory) *GitRepo {
return dag.
Git().
Clone(url).
WithState(dir)
}
withWorktree() 🔗
Set the git worktree
Return Type
Repo !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
dir | Directory ! | - | No description provided |
Example
func (m *myModule) example(url string, dir *Directory) *GitRepo {
return dag.
Git().
Clone(url).
WithWorktree(dir)
}
filterSubdirectory() 🔗
Filter the contents of the repository
Return Type
Repo !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
path | String ! | - | No description provided |
Example
func (m *myModule) example(url string, path string) *GitRepo {
return dag.
Git().
Clone(url).
FilterSubdirectory(path)
}
withCommand() 🔗
Execute a git command in the repository
Return Type
Repo !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
args | [String ! ] ! | - | No description provided |
Example
func (m *myModule) example(url string, args []string) *GitRepo {
return dag.
Git().
Clone(url).
WithCommand(args)
}
command() 🔗
A Git command executed from the current repository state
Return Type
Command !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
args | [String ! ] ! | - | No description provided |
Example
func (m *myModule) example(url string, args []string) *GitCommand {
return dag.
Git().
Clone(url).
Command(args)
}
withRemote() 🔗
Return Type
Repo !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
name | String ! | - | No description provided |
url | String ! | - | No description provided |
Example
func (m *myModule) example(url string, name string, url1 string) *GitRepo {
return dag.
Git().
Clone(url).
WithRemote(name, url1)
}
tag() 🔗
Return Type
Tag !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
name | String ! | - | No description provided |
Example
func (m *myModule) example(url string, name string) *GitTag {
return dag.
Git().
Clone(url).
Tag(name)
}
commit() 🔗
Return Type
Commit !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
digest | String ! | - | No description provided |
Example
func (m *myModule) example(url string, digest string) *GitCommit {
return dag.
Git().
Clone(url).
Commit(digest)
}
Remote 🔗
A git remote
url() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string) string {
return dag.
Git().
Remote(url).
Url(ctx)
}
tag() 🔗
Lookup a tag in the remote
Return Type
RemoteTag !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
name | String ! | - | No description provided |
Example
func (m *myModule) example(url string, name string) *GitRemoteTag {
return dag.
Git().
Remote(url).
Tag(name)
}
tags() 🔗
Query the remote for its tags.
If `filter` is set, only tag matching that regular expression will be included.
Return Type
[RemoteTag ! ] !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
filter | String | - | A regular expression to filter tag names. Only matching tag names will be included. |
Example
func (m *myModule) example(url string) []*GitRemoteTag {
return dag.
Git().
Remote(url).
Tags()
}
branch() 🔗
Lookup a branch in the remote
Return Type
RemoteBranch !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
name | String ! | - | No description provided |
Example
func (m *myModule) example(url string, name string) *GitRemoteBranch {
return dag.
Git().
Remote(url).
Branch(name)
}
branches() 🔗
List available branches in the remote
Return Type
[RemoteBranch ! ] !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
filter | String | - | A regular expression to filter branch names. Only matching names are included. |
Example
func (m *myModule) example(url string) []*GitRemoteBranch {
return dag.
Git().
Remote(url).
Branches()
}
Command 🔗
A Git command
args() 🔗
Return Type
[String ! ] !
Example
func (m *myModule) example(ctx context.Context, url string, args []string) []string {
return dag.
Git().
Clone(url).
Command(args).
Args(ctx)
}
input() 🔗
Return Type
Repo !
Example
func (m *myModule) example(url string, args []string) *GitRepo {
return dag.
Git().
Clone(url).
Command(args).
Input()
}
debug() 🔗
Return Type
Terminal !
Example
func (m *myModule) example(url string, args []string) *Terminal {
return dag.
Git().
Clone(url).
Command(args).
Debug()
}
stdout() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string, args []string) string {
return dag.
Git().
Clone(url).
Command(args).
Stdout(ctx)
}
stderr() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string, args []string) string {
return dag.
Git().
Clone(url).
Command(args).
Stderr(ctx)
}
sync() 🔗
Return Type
Command !
Example
func (m *myModule) example(url string, args []string) *GitCommand {
return dag.
Git().
Clone(url).
Command(args).
Sync()
}
output() 🔗
Return Type
Repo !
Example
func (m *myModule) example(url string, args []string) *GitRepo {
return dag.
Git().
Clone(url).
Command(args).
Output()
}
Tag 🔗
repository() 🔗
Return Type
Repo !
Example
func (m *myModule) example(url string, name string) *GitRepo {
return dag.
Git().
Clone(url).
Tag(name).
Repository()
}
name() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string, name string) string {
return dag.
Git().
Clone(url).
Tag(name).
Name(ctx)
}
fullName() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string, name string) string {
return dag.
Git().
Clone(url).
Tag(name).
FullName(ctx)
}
tree() 🔗
Return Type
Directory !
Example
func (m *myModule) example(url string, name string) *Directory {
return dag.
Git().
Clone(url).
Tag(name).
Tree()
}
Commit 🔗
digest() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string, name string) string {
return dag.
Git().
Remote(url).
Branch(name).
Commit().
Digest(ctx)
}
repository() 🔗
Return Type
Repo !
Example
func (m *myModule) example(url string, name string) *GitRepo {
return dag.
Git().
Remote(url).
Branch(name).
Commit().
Repository()
}
tree() 🔗
Return Type
Directory !
Example
func (m *myModule) example(url string, name string) *Directory {
return dag.
Git().
Remote(url).
Branch(name).
Commit().
Tree()
}
RemoteTag 🔗
A git tag
name() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string, name string) string {
return dag.
Git().
Remote(url).
Tag(name).
Name(ctx)
}
commitId() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string, name string) string {
return dag.
Git().
Remote(url).
Tag(name).
CommitId(ctx)
}
url() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string, name string) string {
return dag.
Git().
Remote(url).
Tag(name).
Url(ctx)
}
commit() 🔗
Return the commit referenced by the remote tag
Return Type
Commit !
Example
func (m *myModule) example(url string, name string) *GitCommit {
return dag.
Git().
Remote(url).
Tag(name).
Commit()
}
RemoteBranch 🔗
A git branch
name() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string, name string) string {
return dag.
Git().
Remote(url).
Branch(name).
Name(ctx)
}
commitId() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string, name string) string {
return dag.
Git().
Remote(url).
Branch(name).
CommitId(ctx)
}
url() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string, name string) string {
return dag.
Git().
Remote(url).
Branch(name).
Url(ctx)
}
commit() 🔗
Return the commit referenced by the remote branch
Return Type
Commit !
Example
func (m *myModule) example(url string, name string) *GitCommit {
return dag.
Git().
Remote(url).
Branch(name).
Commit()
}