Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft PoC of blame using gitoxide #2591

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
186 changes: 186 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions asyncgit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ git2-hooks = { path = "../git2-hooks", version = ">=0.4" }
gix = { version = "0.70.0", default-features = false, features = [
"max-performance",
"revision",
"blob-diff"
] }
gix-blame = "0.0.0"
log = "0.4"
# git2 = { path = "../../extern/git2-rs", features = ["vendored-openssl"]}
# git2 = { git="https://github.com/extrawurst/git2-rs.git", rev="fc13dcc", features = ["vendored-openssl"]}
Expand Down
22 changes: 22 additions & 0 deletions asyncgit/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,20 @@ pub enum Error {
#[error("gix::revision::walk error: {0}")]
GixRevisionWalk(#[from] gix::revision::walk::Error),

///
#[error("gix::traverse::commit::topo error: {0}")]
GixTraverseCommitTopo(#[from] gix::traverse::commit::topo::Error),

///
#[error("gix::repository::diff_resource_cache error: {0}")]
GixRepositoryDiffResourceCache(
#[from] Box<gix::repository::diff_resource_cache::Error>,
),

///
#[error("gix_blame error: {0}")]
GixBlame(#[from] gix_blame::Error),

///
#[error("amend error: config commit.gpgsign=true detected.\ngpg signing is not supported for amending non-last commits")]
SignAmendNonLastCommit,
Expand Down Expand Up @@ -148,3 +162,11 @@ impl From<gix::discover::Error> for Error {
Self::GixDiscover(Box::new(error))
}
}

impl From<gix::repository::diff_resource_cache::Error> for Error {
fn from(
error: gix::repository::diff_resource_cache::Error,
) -> Self {
Self::GixRepositoryDiffResourceCache(Box::new(error))
}
}
Loading
Loading