Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Const correctness! | Jacques Germishuys | 2014-04-03 | 1 | -1/+1 |
| | |||||
* | Added function-based initializers for every options struct. | Matthew Bowen | 2014-03-05 | 1 | -0/+13 |
| | | | | The basic structure of each function is courtesy of arrbee. | ||||
* | Fix terrible indentation | Ben Straub | 2014-02-06 | 1 | -1/+1 |
| | |||||
* | Add reflog parameters to git_push_update_tips | Ben Straub | 2014-02-04 | 1 | -1/+7 |
| | |||||
* | Update docs for new callback return value behavior | Russell Belfer | 2013-12-11 | 1 | -2/+4 |
| | |||||
* | Support cancellation in push operation | Jameson Miller | 2013-10-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | 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). | ||||
* | Initial Implementation of progress reports during push | Jameson Miller | 2013-09-30 | 1 | -0/+29 |
| | | | | | | | | | | | | | | | | | | | | | | 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). | ||||
* | push: small documentation fix | Fraser Tweedale | 2013-08-25 | 1 | -1/+1 |
| | |||||
* | push: fix typo in git_push_finish() doc | Alessandro Ghedini | 2013-02-15 | 1 | -1/+1 |
| | |||||
* | push: improve docs on success / failure of git_push_finish | Michael Schubert | 2013-02-14 | 1 | -0/+10 |
| | |||||
* | Add git_push_options, to set packbuilder parallelism | Philip Kelley | 2013-02-11 | 1 | -0/+32 |
| | |||||
* | Update remote tips on push | Jameson Miller | 2013-01-22 | 1 | -0/+9 |
| | |||||
* | update copyrights | Edward Thomson | 2013-01-08 | 1 | -1/+1 |
| | |||||
* | Push! By schu, phkelley, and congyiwu, et al | Philip Kelley | 2012-11-28 | 1 | -0/+80 |