1 2 3 4 5 6 7 8 9 10 11 12
pub enum Command { TracePath { /// The repo-relative path to the file to trace spec: gix::pathspec::Pattern, }, } pub(crate) mod update; pub use update::update; mod command;