pub type GitBranchChangesSinceFn = fn(gitdir: &Path, branch: &str, mem: &str, since: &str, rename_similarity: f32) -> Result<BackendChanges, BackendError>;Expand description
Engine::changes_since dispatch for git-branch mounts.
Signature matches memstead_git_branch::ops::changes::changes_since after
adapting the Store parameter away (the engine performs enrichment
downstream) and the head_ref parameter (refs/heads/<branch> is
constructed inside the impl from branch).