Struct git2::build::RepoBuilder [−][src]
pub struct RepoBuilder<'cb> { /* fields omitted */ }
Expand description
A builder struct which is used to build configuration for cloning a new git repository.
Implementations
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.
pub fn remote_create<F>(&mut self, f: F) -> &mut RepoBuilder<'cb> where
F: for<'a> FnMut(&'a Repository, &str, &str) -> Result<Remote<'a>, Error> + 'cb,
pub fn remote_create<F>(&mut self, f: F) -> &mut RepoBuilder<'cb> where
F: for<'a> FnMut(&'a Repository, &str, &str) -> Result<Remote<'a>, Error> + 'cb,
Configures a callback used to create the git remote, prior to its being used to perform the clone operation.