This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/stdlib/git/git.cue

20 lines
197 B
CUE
Raw Normal View History

package git
import (
"dagger.io/dagger"
)
// A git repository
#Repository: {
remote: string
ref: string
#compute: [
dagger.#FetchGit & {
"remote": remote
"ref": ref
},
]
}