diff --git a/stdlib/git/git.cue b/stdlib/git/git.cue new file mode 100644 index 00000000..4f3b0e98 --- /dev/null +++ b/stdlib/git/git.cue @@ -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 + }, + ] +}