Struct git2::PackBuilder [] [src]

pub struct PackBuilder<'repo> { /* fields omitted */ }

A builder for creating a packfile

Methods

impl<'repo> PackBuilder<'repo>
[src]

[src]

Insert a single object. For an optimal pack it's mandatory to insert objects in recency order, commits followed by trees and blobs.

[src]

Insert a root tree object. This will add the tree as well as all referenced trees and blobs.

[src]

Insert a commit object. This will add a commit as well as the completed referenced tree.

[src]

Insert objects as given by the walk. Those commits and all objects they reference will be inserted into the packbuilder.

[src]

Recursively insert an object and its referenced objects. Insert the object as well as any object it references.

[src]

Write the contents of the packfile to an in-memory buffer. The contents of the buffer will become a valid packfile, even though there will be no attached index.

[src]

Create the new pack and pass each object to the callback.

[src]

progress will be called with progress information during pack building. Be aware that this is called inline with pack building operations, so performance may be affected.

There can only be one progress callback attached, this will replace any existing one. See unset_progress_callback to remove the current progress callback without attaching a new one.

[src]

Remove the current progress callback. See set_progress_callback to set the progress callback.

[src]

Get the total number of objects the packbuilder will write out.

[src]

Get the number of objects the packbuilder has already written out.

[src]

Get the packfile's hash. A packfile's name is derived from the sorted hashing of all object names. This is only correct after the packfile has been written.

Trait Implementations

impl<'repo> Drop for PackBuilder<'repo>
[src]

[src]

Executes the destructor for this type. Read more