remote-helper: Remove unused push error variant
This commit is contained in:
parent
550fcccc27
commit
876d22b072
|
|
@ -5,7 +5,7 @@ mod error;
|
||||||
|
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::io::IsTerminal;
|
use std::io::IsTerminal;
|
||||||
use std::path::{Path, PathBuf};
|
use std::path::Path;
|
||||||
use std::process::ExitStatus;
|
use std::process::ExitStatus;
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
use std::{assert_eq, io};
|
use std::{assert_eq, io};
|
||||||
|
|
@ -36,10 +36,6 @@ use crate::{hint, read_line, Options, Verbosity};
|
||||||
|
|
||||||
#[derive(Debug, Error)]
|
#[derive(Debug, Error)]
|
||||||
pub enum Error {
|
pub enum Error {
|
||||||
#[error(
|
|
||||||
"the Git repository found at {path:?} is a bare repository, expected a working directory"
|
|
||||||
)]
|
|
||||||
BareRepository { path: PathBuf },
|
|
||||||
/// Public key doesn't match the remote namespace we're pushing to.
|
/// Public key doesn't match the remote namespace we're pushing to.
|
||||||
#[error("cannot push to remote namespace owned by {0}")]
|
#[error("cannot push to remote namespace owned by {0}")]
|
||||||
KeyMismatch(Did),
|
KeyMismatch(Did),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue