Struct git2::build::RepoBuilder[][src]

pub struct RepoBuilder<'cb> { /* fields omitted */ }

A builder struct which is used to build configuration for cloning a new git repository.

Methods

impl<'cb> RepoBuilder<'cb>
[src]

Creates a new repository builder with all of the default configuration.

When ready, the clone() method can be used to clone a new repository using this configuration.

Indicate whether the repository will be cloned as a bare repository or not.

Specify the name of the branch to check out after the clone.

If not specified, the remote's default branch will be used.

Configures options for bypassing the git-aware transport on clone.

Bypassing it means that instead of a fetch libgit2 will copy the object database directory instead of figuring out what it needs, which is faster. If possible, it will hardlink the files to save space.

Configure the checkout which will be performed by consuming a checkout builder.

Options which control the fetch, including callbacks.

The callbacks are used for reporting fetch progress, and for acquiring credentials in the event they are needed.

Configures a callback used to create the git remote, prior to its being used to perform the clone operation.

Clone a remote repository.

This will use the options configured so far to clone the specified url into the specified local path.

Trait Implementations

impl<'cb> Default for RepoBuilder<'cb>
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl<'cb> !Send for RepoBuilder<'cb>

impl<'cb> !Sync for RepoBuilder<'cb>