diff --git a/libimagstorestdhook/src/vcs/git/config.rs b/libimagstorestdhook/src/vcs/git/config.rs index 95e09a42..d4ae10f7 100644 --- a/libimagstorestdhook/src/vcs/git/config.rs +++ b/libimagstorestdhook/src/vcs/git/config.rs @@ -1,7 +1,6 @@ use toml::Value; use libimagerror::into::IntoError; -use libimagutil::edit::edit_in_tmpfile_with_command; use vcs::git::error::GitHookErrorKind as GHEK; use vcs::git::error::MapErrInto; diff --git a/libimagstorestdhook/src/vcs/git/create.rs b/libimagstorestdhook/src/vcs/git/create.rs index 335bf2a6..431fbd36 100644 --- a/libimagstorestdhook/src/vcs/git/create.rs +++ b/libimagstorestdhook/src/vcs/git/create.rs @@ -1,30 +1,17 @@ use std::path::PathBuf; -use std::path::Path; use std::fmt::{Debug, Formatter, Error as FmtError}; use std::result::Result as RResult; use toml::Value; -use git2::{Reference as GitReference, Repository, Error as Git2Error}; -use git2::{ADD_DEFAULT, STATUS_WT_NEW, STATUS_WT_MODIFIED, IndexMatchedPath}; use libimagstore::storeid::StoreId; use libimagstore::hook::Hook; -use libimagstore::hook::error::HookError as HE; -use libimagstore::hook::error::HookErrorKind as HEK; -use libimagstore::hook::error::CustomData as HECD; use libimagstore::hook::result::HookResult; use libimagstore::hook::position::HookPosition; use libimagstore::hook::accessor::{HookDataAccessor, HookDataAccessorProvider}; use libimagstore::hook::accessor::StoreIdAccessor; use libimagerror::trace::trace_error; -use libimagerror::into::IntoError; -use libimagutil::debug_result::*; -use vcs::git::result::Result; -use vcs::git::error::MapIntoHookError; -use vcs::git::error::MapErrInto; -use vcs::git::error::GitHookErrorKind as GHEK; -use vcs::git::error::GitHookError as GHE; use vcs::git::runtime::Runtime as GRuntime; pub struct CreateHook { diff --git a/libimagstorestdhook/src/vcs/git/runtime.rs b/libimagstorestdhook/src/vcs/git/runtime.rs index 13902b7d..7cefc9bf 100644 --- a/libimagstorestdhook/src/vcs/git/runtime.rs +++ b/libimagstorestdhook/src/vcs/git/runtime.rs @@ -1,6 +1,6 @@ use std::path::PathBuf; -use git2::{Repository, Signature}; +use git2::Repository; use toml::Value; use libimagerror::into::IntoError; diff --git a/libimagstorestdhook/src/vcs/git/update.rs b/libimagstorestdhook/src/vcs/git/update.rs index 2dce8ab2..1679e05b 100644 --- a/libimagstorestdhook/src/vcs/git/update.rs +++ b/libimagstorestdhook/src/vcs/git/update.rs @@ -5,23 +5,17 @@ use std::result::Result as RResult; use toml::Value; -use libimagerror::into::IntoError; use libimagerror::trace::trace_error; use libimagstore::hook::Hook; use libimagstore::hook::accessor::StoreIdAccessor; use libimagstore::hook::accessor::{HookDataAccessor, HookDataAccessorProvider}; -use libimagstore::hook::error::HookError as HE; -use libimagstore::hook::error::HookErrorKind as HEK; use libimagstore::hook::position::HookPosition; use libimagstore::hook::result::HookResult; use libimagstore::storeid::StoreId; use libimagutil::debug_result::*; -use vcs::git::error::GitHookError as GHE; use vcs::git::error::GitHookErrorKind as GHEK; use vcs::git::error::MapErrInto; -use vcs::git::error::MapIntoHookError; -use vcs::git::result::Result; use vcs::git::runtime::Runtime as GRuntime; pub struct UpdateHook { @@ -89,7 +83,6 @@ impl StoreIdAccessor for UpdateHook { use vcs::git::config::commit_message; use vcs::git::error::MapIntoHookError; use vcs::git::util::fetch_index; - use git2::{Reference as GitReference, Repository, Error as Git2Error}; use git2::{ADD_DEFAULT, STATUS_WT_NEW, STATUS_WT_MODIFIED, IndexMatchedPath}; debug!("[GIT UPDATE HOOK]: {:?}", id); diff --git a/libimagstorestdhook/src/vcs/git/util.rs b/libimagstorestdhook/src/vcs/git/util.rs index 56b66323..1e1dd03d 100644 --- a/libimagstorestdhook/src/vcs/git/util.rs +++ b/libimagstorestdhook/src/vcs/git/util.rs @@ -6,7 +6,6 @@ use git2::{Repository, Index}; use vcs::git::error::GitHookErrorKind as GHEK; use vcs::git::error::MapErrInto; -use vcs::git::runtime::Runtime as GRuntime; use vcs::git::action::StoreAction; use vcs::git::error::MapIntoHookError;