| 340 | } |
| 341 | |
| 342 | static int push_update_reference_callback(const char *refname, const char *status, void *data) |
| 343 | { |
| 344 | char *error_message = NULL; |
| 345 | const int ret = pushUpdateReferenceCallback( |
| 346 | &error_message, |
| 347 | (char *)refname, |
| 348 | (char *)status, |
| 349 | data |
| 350 | ); |
| 351 | return set_callback_error(error_message, ret); |
| 352 | } |
| 353 | |
| 354 | void _go_git_populate_remote_callbacks(git_remote_callbacks *callbacks) |
| 355 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…