#![deny(missing_docs, rust_2018_idioms)]
#![forbid(unsafe_code)]
pub const DOT_GIT_DIR: &str = ".git";
pub const MODULES: &str = "modules";
#[allow(clippy::empty_docs)]
pub mod repository;
#[allow(clippy::empty_docs)]
pub mod is_git {
use std::path::PathBuf;
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error("Could not find a valid HEAD reference")]
FindHeadRef(#[from] gix_ref::file::find::existing::Error),
#[error("Missing HEAD at '.git/HEAD'")]
MissingHead,
#[error("Expected HEAD at '.git/HEAD', got '.git/{}'", .name)]
MisplacedHead { name: bstr::BString },
#[error("Expected an objects directory at '{}'", .missing.display())]
MissingObjectsDirectory { missing: PathBuf },
#[error("The worktree's private repo's commondir file at '{}' or it could not be read", .missing.display())]
MissingCommonDir { missing: PathBuf, source: std::io::Error },
#[error("Expected a refs directory at '{}'", .missing.display())]
MissingRefsDirectory { missing: PathBuf },
#[error(transparent)]
GitFile(#[from] crate::path::from_gitdir_file::Error),
#[error("Could not retrieve metadata of \"{path}\"")]
Metadata { source: std::io::Error, path: PathBuf },
#[error("The repository's config file doesn't exist or didn't have a 'bare' configuration or contained core.worktree without value")]
Inconclusive,
}
}
mod is;
pub use is::{bare as is_bare, git as is_git, submodule_git_dir as is_submodule_git_dir};
#[allow(clippy::empty_docs)]
pub mod upwards;
pub use upwards::function::{discover as upwards, discover_opts as upwards_opts};
#[allow(clippy::empty_docs)]
pub mod path;
#[allow(clippy::empty_docs)]
pub mod parse;