Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-11remote: update head list on pushCarlos Martín Nieto
A previous commit forgot to update the head list after push as well, leading to wrong output of git_remote_ls().
2013-11-11remote: make _ls return the list directlyCarlos Martín Nieto
The callback-based method of listing remote references dates back to the beginning of the network code's lifetime, when we didn't know any better. We need to keep the list around for update_tips() after disconnect() so let's make use of this to simply give the user a pointer to the array so they can write straightforward code instead of having to go through a callback.
2013-10-30protocol: basic support for multi_ack_detailedCarlos Martín Nieto
This tells the server that we speak it, but we don't make use of its extra information to determine if there's a better place to stop negotiating. In a somewhat-related change, reorder the capabilities so we ask for them in the same order as git does. Also take this opportunity to factor out a fairly-indented portion of the negotiation logic.
2013-10-28Merge pull request #1891 from libgit2/cmn/fix-thin-packsVicent Martí
Add support for thin packs
2013-10-04net: advertise our support for fixing thin packsCarlos Martín Nieto
2013-10-02Support cancellation in push operationJameson Miller
This commit adds cancellation for the push operation. This work consists of: 1) Support cancellation during push operation - During object counting phase - During network transfer phase - Propagate GIT_EUSER error code out to caller 2) Improve cancellation support during fetch - Handle cancellation request during network transfer phase - Clear error string when cancelled during indexing 3) Fix error handling in git_smart__download_pack Cancellation during push is still only handled in the pack building and network transfer stages of push (and not during packbuilding).
2013-03-12Advertise and support side-band-64k when calling receive-packPhilip Kelley
2013-01-09update copyrightsEdward Thomson
2012-12-10Add a payload param to git_cred_acquire_cbBen Straub
Fixes #1128.
2012-11-28Push! By schu, phkelley, and congyiwu, et alPhilip Kelley
2012-11-28Fix warnings on Win64 buildRussell Belfer
2012-11-06Basic authentication for http and winhttpPhilip Kelley
2012-11-01Reorganize transport architecture (squashed 3)Philip Kelley