2024-05-18 11:41:18 +01:00
|
|
|
use super::GitRef;
|
2024-06-08 20:43:20 +01:00
|
|
|
use crate as git;
|
|
|
|
use git_next_config as config;
|
2024-05-11 19:46:20 +01:00
|
|
|
|
2024-06-09 10:21:09 +01:00
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
2024-05-11 19:46:20 +01:00
|
|
|
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 {
|
2024-05-19 09:44:59 +01:00
|
|
|
Self::No => write!(f, "fast-forward"),
|
2024-05-11 19:46:20 +01:00
|
|
|
Self::From(from) => write!(f, "force-if-from:{}", from),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-16 22:21:55 +01:00
|
|
|
|
2024-06-08 20:43:20 +01:00
|
|
|
pub type Result<T> = core::result::Result<T, Error>;
|
|
|
|
|
2024-06-03 08:04:48 +01:00
|
|
|
#[derive(Debug, thiserror::Error)]
|
2024-05-14 16:28:17 +01:00
|
|
|
pub enum Error {
|
2024-06-08 20:43:20 +01:00
|
|
|
#[error("io")]
|
|
|
|
Io(#[from] std::io::Error),
|
|
|
|
|
|
|
|
#[error("network: {0}")]
|
|
|
|
Network(#[from] kxio::network::NetworkError),
|
2024-06-03 08:04:48 +01:00
|
|
|
|
2024-06-08 20:43:20 +01:00
|
|
|
#[error("fetch: {0}")]
|
|
|
|
Fetch(#[from] git::fetch::Error),
|
2024-06-03 08:04:48 +01:00
|
|
|
|
|
|
|
#[error("lock")]
|
2024-05-18 11:41:18 +01:00
|
|
|
Lock,
|
2024-06-08 20:43:20 +01:00
|
|
|
|
|
|
|
#[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),
|
2024-06-09 10:21:09 +01:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
#[error("test")]
|
|
|
|
TestResult(#[from] Box<dyn std::error::Error>),
|
2024-05-11 19:46:20 +01:00
|
|
|
}
|
|
|
|
|
2024-06-08 20:43:20 +01:00
|
|
|
pub fn reset(
|
|
|
|
repository: &git::OpenRepository,
|
|
|
|
repo_details: &git::RepoDetails,
|
2024-06-08 21:13:31 +01:00
|
|
|
branch_name: &config::BranchName,
|
|
|
|
to_commit: &git::GitRef,
|
|
|
|
force: &git::push::Force,
|
2024-06-08 20:43:20 +01:00
|
|
|
) -> Result<()> {
|
|
|
|
repository.fetch()?;
|
|
|
|
repository.push(repo_details, branch_name, to_commit, force)
|
|
|
|
}
|