openai/codex · error · GitToolingError
path {path:?} escapes the repository root
Error message
path {path:?} escapes the repository root What it means
Error "path {path:?} escapes the repository root" thrown in openai/codex.
Source
Thrown at codex-rs/git-utils/src/errors.rs:27
#[derive(Debug, Error)]
pub enum GitToolingError {
#[error("git command `{command}` failed with status {status}: {stderr}")]
GitCommand {
command: String,
status: ExitStatus,
stderr: String,
},
#[error("git command `{command}` produced non-UTF-8 output")]
GitOutputUtf8 {
command: String,
#[source]
source: FromUtf8Error,
},
#[error("{path:?} is not a git repository")]
NotAGitRepository { path: PathBuf },
#[error("path {path:?} must be relative to the repository root")]
NonRelativePath { path: PathBuf },
#[error("path {path:?} escapes the repository root")]
PathEscapesRepository { path: PathBuf },
#[error("failed to process path inside worktree")]
PathPrefix(#[from] std::path::StripPrefixError),
#[error(transparent)]
Walkdir(#[from] WalkdirError),
#[error(transparent)]
Io(#[from] std::io::Error),
}
View on GitHub (pinned to 339751715c)
When it happens
Trigger: Thrown at codex-rs/git-utils/src/errors.rs:27 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of openai/codex@339751715c (2026-08-25).
Data as JSON: /api/errors/7ed50222c37e9ecb.
Report an issue: GitHub.