Struct git2::build::RepoBuilder
source · pub struct RepoBuilder<'cb> { /* private fields */ }
Expand description
A builder struct which is used to build configuration for cloning a new git repository.
§Example
Cloning using SSH:
use git2::{Cred, Error, RemoteCallbacks};
use std::env;
use std::path::Path;
// Prepare callbacks.
let mut callbacks = RemoteCallbacks::new();
callbacks.credentials(|_url, username_from_url, _allowed_types| {
Cred::ssh_key(
username_from_url.unwrap(),
None,
Path::new(&format!("{}/.ssh/id_rsa", env::var("HOME").unwrap())),
None,
)
});
// Prepare fetch options.
let mut fo = git2::FetchOptions::new();
fo.remote_callbacks(callbacks);
// Prepare builder.
let mut builder = git2::build::RepoBuilder::new();
builder.fetch_options(fo);
// Clone the project.
builder.clone(
"git@github.com:rust-lang/git2-rs.git",
Path::new("/tmp/git2-rs"),
);
Implementations§
source§impl<'cb> RepoBuilder<'cb>
impl<'cb> RepoBuilder<'cb>
sourcepub fn new() -> RepoBuilder<'cb>
pub fn new() -> RepoBuilder<'cb>
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.
sourcepub fn bare(&mut self, bare: bool) -> &mut RepoBuilder<'cb>
pub fn bare(&mut self, bare: bool) -> &mut RepoBuilder<'cb>
Indicate whether the repository will be cloned as a bare repository or not.
sourcepub fn branch(&mut self, branch: &str) -> &mut RepoBuilder<'cb>
pub fn branch(&mut self, branch: &str) -> &mut RepoBuilder<'cb>
Specify the name of the branch to check out after the clone.
If not specified, the remote’s default branch will be used.
sourcepub fn clone_local(&mut self, clone_local: CloneLocal) -> &mut RepoBuilder<'cb>
pub fn clone_local(&mut self, clone_local: CloneLocal) -> &mut RepoBuilder<'cb>
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.
sourcepub fn with_checkout(
&mut self,
checkout: CheckoutBuilder<'cb>
) -> &mut RepoBuilder<'cb>
pub fn with_checkout( &mut self, checkout: CheckoutBuilder<'cb> ) -> &mut RepoBuilder<'cb>
Configure the checkout which will be performed by consuming a checkout builder.
sourcepub fn fetch_options(
&mut self,
fetch_opts: FetchOptions<'cb>
) -> &mut RepoBuilder<'cb>
pub fn fetch_options( &mut self, fetch_opts: FetchOptions<'cb> ) -> &mut RepoBuilder<'cb>
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.
sourcepub fn remote_create<F>(&mut self, f: F) -> &mut RepoBuilder<'cb>
pub fn remote_create<F>(&mut self, f: F) -> &mut RepoBuilder<'cb>
Configures a callback used to create the git remote, prior to its being used to perform the clone operation.