Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GitSource

import type { GitSource } from "https://googleapis.deno.dev/v1/config:v1.ts";

A set of files in a Git repository.

interface GitSource {
directory?: string;
ref?: string;
repo?: string;
}

§Properties

§
directory?: string
[src]

Optional. Subdirectory inside the repository. Example: 'staging/my-package'

§
ref?: string
[src]

Optional. Git reference (e.g. branch or tag).

§
repo?: string
[src]

Optional. Repository URL. Example: 'https://github.com/kubernetes/examples.git'