pub fn walk_range(
repo: &Repository,
start: ObjectId,
end: ObjectId,
) -> Result<Vec<ObjectId>, GitError>Expand description
Walk commits reachable from end but not from start, returned oldest-first.
This is equivalent to git log --reverse start..end.