@shopify/cli-kit
    Preparing search index...

    Interface GitCloneOptions

    Options to use when cloning a git repository.

    The URL of the repository to clone.

    The directory where the repository will be cloned.

    Whether to clone the repository shallowly.

    Whether to clone the latest tag instead of the default branch.

    interface GitCloneOptions {
        destination: string;
        latestTag?: boolean;
        repoUrl: string;
        shallow?: boolean;
    }
    Index

    Properties

    destination: string
    latestTag?: boolean
    repoUrl: string
    shallow?: boolean