get_all_commits_by_path

Function get_all_commits_by_path 

Source
pub fn get_all_commits_by_path(
    repo_path: &Path,
) -> Result<HashMap<String, Vec<Change>>>
Expand description

Get all commits for all paths in the repository at once. Returns a HashMap where keys are relative paths and values are lists of changes. This is much more efficient than calling get_commits_for_path for each path individually.