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-09-30Initial Implementation of progress reports during pushJameson Miller
This adds the basics of progress reporting during push. While progress for all aspects of a push operation are not reported with this change, it lays the foundation to add these later. Push progress reporting can be improved in the future - and consumers of the API should just get more accurate information at that point. The main areas where this is lacking are: 1) packbuilding progress: does not report progress during deltafication, as this involves coordinating progress from multiple threads. 2) network progress: reports progress as objects and bytes are going to be written to the subtransport (instead of as client gets confirmation that they have been received by the server) and leaves out some of the bytes that are transfered as part of the push protocol. Basically, this reports the pack bytes that are written to the subtransport. It does not report the bytes sent on the wire that are received by the server. This should be a good estimate of progress (and an improvement over no progress).
2013-01-09update copyrightsEdward Thomson
2012-11-28Push! By schu, phkelley, and congyiwu, et alPhilip Kelley
2012-11-17Fix MSVC compilation warningsnulltoken
2012-11-13Remove git_hash_ctx_new - callers now _ctx_init()Edward Thomson
2012-11-01Reorganize transport architecture (squashed 3)Philip Kelley
2012-10-17Incremental improvements to pack-objects logicPhilip Kelley
Incorporate feedback for incr. improvements to pack-objects
2012-10-09fixup! gsoc-pack-objects WIPMichael Schubert
Use khash instead of git.git's hashing algorithm.
2012-10-09gsoc-pack-objects WIPMichael Schubert