54 lines
1.3 KiB
Rust
54 lines
1.3 KiB
Rust
use super::GitRef;
|
|
use crate as git;
|
|
use git_next_config as config;
|
|
|
|
#[derive(Debug)]
|
|
pub enum Force {
|
|
No,
|
|
From(GitRef),
|
|
}
|
|
impl std::fmt::Display for Force {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
match self {
|
|
Self::No => write!(f, "fast-forward"),
|
|
Self::From(from) => write!(f, "force-if-from:{}", from),
|
|
}
|
|
}
|
|
}
|
|
|
|
pub type Result<T> = core::result::Result<T, Error>;
|
|
|
|
#[derive(Debug, thiserror::Error)]
|
|
pub enum Error {
|
|
#[error("io")]
|
|
Io(#[from] std::io::Error),
|
|
|
|
#[error("network: {0}")]
|
|
Network(#[from] kxio::network::NetworkError),
|
|
|
|
#[error("fetch: {0}")]
|
|
Fetch(#[from] git::fetch::Error),
|
|
|
|
#[error("lock")]
|
|
Lock,
|
|
|
|
#[error("gix open: {0}")]
|
|
Open(#[from] Box<gix::open::Error>),
|
|
|
|
#[error("gix iter: {0}")]
|
|
GixIter(#[from] gix::reference::iter::Error),
|
|
|
|
#[error("gix iter init: {0}")]
|
|
GixIterInit(#[from] gix::reference::iter::init::Error),
|
|
}
|
|
|
|
pub fn reset(
|
|
repository: &git::OpenRepository,
|
|
repo_details: &git::RepoDetails,
|
|
branch_name: &config::BranchName,
|
|
to_commit: &git::GitRef,
|
|
force: &git::push::Force,
|
|
) -> Result<()> {
|
|
repository.fetch()?;
|
|
repository.push(repo_details, branch_name, to_commit, force)
|
|
}
|