Skip to content
  • Ronnie Sahlberg's avatar
    send-pack.c: add --atomic command line argument · 4ff17f10
    Ronnie Sahlberg authored and Junio C Hamano's avatar Junio C Hamano committed
    
    
    This adds support to send-pack to negotiate and use atomic pushes
    iff the server supports it. Atomic pushes are activated by a new command
    line flag --atomic.
    
    In order to do this we also need to change the semantics for send_pack()
    slightly. The existing send_pack() function actually doesn't send all the
    refs back to the server when multiple refs are involved, for example
    when using --all. Several of the failure modes for pushes can already be
    detected locally in the send_pack client based on the information from the
    initial server side list of all the refs as generated by receive-pack.
    Any such refs that we thus know would fail to push are thus pruned from
    the list of refs we send to the server to update.
    
    For atomic pushes, we have to deal thus with both failures that are detected
    locally as well as failures that are reported back from the server. In order
    to do so we treat all local failures as push failures too.
    
    We introduce a new status code REF_STATUS_ATOMIC_PUSH_FAILED so we can
    flag all refs that we would normally have tried to push to the server
    but we did not due to local failures. This is to improve the error message
    back to the end user to flag that "these refs failed to update since the
    atomic push operation failed."
    
    Signed-off-by: default avatarRonnie Sahlberg <sahlberg@google.com>
    Signed-off-by: default avatarStefan Beller <sbeller@google.com>
    Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
    4ff17f10