git_push_update_reference_cb

Callback used to inform of the update status from the remote.

Called for each updated reference on push. If status is not null, the update was rejected by the remote server and status contains the reason given.

@param refname refname specifying to the remote ref @param status status message sent from the remote @param data data provided by the caller @return 0 on success, otherwise an error

extern (C) nothrow @nogc
alias git_push_update_reference_cb = int function
(
const(char)* refname
,
const(char)* status
,
void* data
)

Meta