| 371 | } |
| 372 | |
| 373 | int _go_git_index_update_all(git_index *index, const git_strarray *pathspec, void *callback) |
| 374 | { |
| 375 | git_index_matched_path_cb cb = callback ? (git_index_matched_path_cb)&indexMatchedPathCallback : NULL; |
| 376 | return git_index_update_all(index, pathspec, cb, callback); |
| 377 | } |
| 378 | |
| 379 | int _go_git_index_remove_all(git_index *index, const git_strarray *pathspec, void *callback) |
| 380 | { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…