stdlib package: git

Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
This commit is contained in:
Solomon Hykes 2021-03-12 23:07:22 +00:00
parent 41c973ba04
commit be64c1576b

19
stdlib/git/git.cue Normal file
View File

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