supergit
No long description provided.
Installation
dagger install github.com/shykes/daggerverse/supergit@de9d9670c76e7b89a06800cf938ce8303f94569c
Entrypoint
Return Type
Supergit
Example
func (m *myModule) example() *Supergit {
return dag.
Supergit()
}
Types
Supergit 🔗
repository() 🔗
A new git repository
Return Type
Repository !
Example
func (m *myModule) example() *SupergitRepository {
return dag.
Supergit().
Repository()
}
container() 🔗
Return Type
Container !
Example
func (m *myModule) example() *Container {
return dag.
Supergit().
Container()
}
remote() 🔗
A new git remote
Return Type
Remote !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
url | String ! | - | No description provided |
Example
func (m *myModule) example(url string) *SupergitRemote {
return dag.
Supergit().
Remote(url)
}
Repository 🔗
A git repository
state() 🔗
Return Type
Directory !
Example
func (m *myModule) example() *Directory {
return dag.
Supergit().
Repository().
State()
}
worktree() 🔗
Return Type
Directory !
Example
func (m *myModule) example() *Directory {
return dag.
Supergit().
Repository().
Worktree()
}
withGitCommand() 🔗
Execute a git command in the repository
Return Type
Repository !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
args | [String ! ] ! | - | No description provided |
Example
func (m *myModule) example(args []string) *SupergitRepository {
return dag.
Supergit().
Repository().
WithGitCommand(args)
}
gitCommand() 🔗
A Git command executed from the current repository state
Return Type
GitCommand !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
args | [String ! ] ! | - | No description provided |
Example
func (m *myModule) example(args []string) *SupergitGitCommand {
return dag.
Supergit().
Repository().
GitCommand(args)
}
withRemote() 🔗
Return Type
Repository !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
name | String ! | - | No description provided |
url | String ! | - | No description provided |
Example
func (m *myModule) example(name string, url string) *SupergitRepository {
return dag.
Supergit().
Repository().
WithRemote(name, url)
}
tag() 🔗
Return Type
Tag !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
name | String ! | - | No description provided |
Example
func (m *myModule) example(name string) *SupergitTag {
return dag.
Supergit().
Repository().
Tag(name)
}
commit() 🔗
Return Type
Commit !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
digest | String ! | - | No description provided |
Example
func (m *myModule) example(digest string) *SupergitCommit {
return dag.
Supergit().
Repository().
Commit(digest)
}
Remote 🔗
A git remote
url() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string) string {
return dag.
Supergit().
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) *SupergitRemoteTag {
return dag.
Supergit().
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) []*SupergitRemoteTag {
return dag.
Supergit().
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) *SupergitRemoteBranch {
return dag.
Supergit().
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) []*SupergitRemoteBranch {
return dag.
Supergit().
Remote(url).
Branches()
}
GitCommand 🔗
A Git command
args() 🔗
Return Type
[String ! ] !
Example
func (m *myModule) example(ctx context.Context, args []string) []string {
return dag.
Supergit().
Repository().
GitCommand(args).
Args(ctx)
}
input() 🔗
Return Type
Repository !
Example
func (m *myModule) example(args []string) *SupergitRepository {
return dag.
Supergit().
Repository().
GitCommand(args).
Input()
}
debug() 🔗
Return Type
Terminal !
Example
func (m *myModule) example(args []string) *Terminal {
return dag.
Supergit().
Repository().
GitCommand(args).
Debug()
}
stdout() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, args []string) string {
return dag.
Supergit().
Repository().
GitCommand(args).
Stdout(ctx)
}
stderr() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, args []string) string {
return dag.
Supergit().
Repository().
GitCommand(args).
Stderr(ctx)
}
sync() 🔗
Return Type
GitCommand !
Example
func (m *myModule) example(args []string) *SupergitGitCommand {
return dag.
Supergit().
Repository().
GitCommand(args).
Sync()
}
output() 🔗
Return Type
Repository !
Example
func (m *myModule) example(args []string) *SupergitRepository {
return dag.
Supergit().
Repository().
GitCommand(args).
Output()
}
Tag 🔗
repository() 🔗
Return Type
Repository !
Example
func (m *myModule) example(name string) *SupergitRepository {
return dag.
Supergit().
Repository().
Tag(name).
Repository()
}
name() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, name string) string {
return dag.
Supergit().
Repository().
Tag(name).
Name(ctx)
}
fullName() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, name string) string {
return dag.
Supergit().
Repository().
Tag(name).
FullName(ctx)
}
tree() 🔗
Return Type
Directory !
Example
func (m *myModule) example(name string) *Directory {
return dag.
Supergit().
Repository().
Tag(name).
Tree()
}
Commit 🔗
digest() 🔗
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, url string, name string) string {
return dag.
Supergit().
Remote(url).
Branch(name).
Commit().
Digest(ctx)
}
repository() 🔗
Return Type
Repository !
Example
func (m *myModule) example(url string, name string) *SupergitRepository {
return dag.
Supergit().
Remote(url).
Branch(name).
Commit().
Repository()
}
tree() 🔗
Return Type
Directory !
Example
func (m *myModule) example(url string, name string) *Directory {
return dag.
Supergit().
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.
Supergit().
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.
Supergit().
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.
Supergit().
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) *SupergitCommit {
return dag.
Supergit().
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.
Supergit().
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.
Supergit().
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.
Supergit().
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) *SupergitCommit {
return dag.
Supergit().
Remote(url).
Branch(name).
Commit()
}