| 233 | } |
| 234 | |
| 235 | int get_shallows_depth(struct object_array *heads, struct object_array *shallows) |
| 236 | { |
| 237 | int max_cur_depth = 0; |
| 238 | get_shallows_or_depth(heads, shallows, &max_cur_depth, 0, 0, 0); |
| 239 | return max_cur_depth; |
| 240 | |
| 241 | } |
| 242 | |
| 243 | struct commit_list *get_shallow_commits(struct object_array *heads, |
| 244 | struct object_array *shallows, int deepen_relative, |
no test coverage detected