- 30 Sep, 2013 8 commits
-
-
Initial Implementation of progress reports during push
Vicent Martí committed -
Never consider submodules for stashing
Vicent Martí committed -
...before the helper's cleanup method tries to delete their files.
Ben Straub committed -
Fix x86/x64 size_t related warnings
Vicent Martí committed -
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).
Jameson Miller committed -
Remove leading newlines from commit message
Vicent Martí committed -
Fix libgit2/libgit2sharp#522
nulltoken committed -
nulltoken committed
-
- 28 Sep, 2013 2 commits
-
-
Justin Spahr-Summers committed
-
Justin Spahr-Summers committed
-
- 27 Sep, 2013 2 commits
-
-
Add refdb.h to git2.h, reorder git2.h sanely
Vicent Martí committed -
Edward Thomson committed
-
- 26 Sep, 2013 1 commit
-
-
nulltoken committed
-
- 25 Sep, 2013 11 commits
-
-
Ben Straub committed
-
Win32: handle http->https redirects
Ben Straub committed -
Bring error handling docs up to date
Vicent Martí committed -
Ben Straub committed
-
The error handling docs date back to the early error redesign work and don't match up with the route we actually took. This brings them in line with actual practice both for external users and internal implementors, and notes some of the exceptions and possible bugs.
Russell Belfer committed -
That's the refdb, it's not the odb...
Vicent Martí committed -
Edward Thomson committed
-
Cleaned up some tables in checkout-internals doc
Vicent Martí committed -
Fixed formatting of diff-internals.md
Vicent Martí committed -
Indentation for lists was not working correctly.
Mike Anderson committed -
The markdown wasn't rendering correctly.
Mike Anderson committed
-
- 24 Sep, 2013 16 commits
-
-
Make tests pass if XDG config exists
Vicent Martí committed -
Russell Belfer committed
-
Alternative fix for cross protocol redirects
Vicent Martí committed -
Russell Belfer committed
-
The subtransport path was relying on pointing to data owned by the remote which meant that after a redirect, the updated path was getting lost for future requests. This updates the http transport to strdup the path and maintain its own lifetime. This also pulls responsibility for parsing the URL back into the http transport and isolates the functions that parse and free that connection data so that they can be reused between the initial parsing and the redirect parsing.
Russell Belfer committed -
Ignore files that disappear while iterating
Vicent Martí committed -
On occasion, files can disappear while we're iterating the filesystem, between calls to readdir and stat. Let's pretend those didn't exist in the first place.
Edward Thomson committed -
Ben Straub committed
-
Ben Straub committed
-
Various warning cleanup and minor fixes
Vicent Martí committed -
Minimize regex usage
Vicent Martí committed -
Russell Belfer committed
-
The git_buf_text_gather_stats call returns a boolean indicating if the file looks like binary data. That shouldn't be an error; it should be used to skip CRLF processing though.
Russell Belfer committed -
'del' instead of 'delete' for the poor C++ users
Russell Belfer committed -
Edward Thomson committed
-
Russell Belfer committed
-