- 02 Dec, 2012 2 commits
-
-
David Michael Barr committed
-
To paraphrase @peff: You can get both size and type from a packed object reasonably cheaply. If you have: * An object that is not a delta; both type and size are available in the packfile header. * An object that is a delta. The packfile type will be OBJ_*_DELTA, and you have to resolve back to the base to find the real type. That means potentially a lot of packfile index lookups, but each one is relatively cheap. For the size, you inflate the first few bytes of the delta, whose header will tell you the resulting size of applying the delta to the base. For simplicity, we just decompress the whole delta for now.
David Michael Barr committed
-
- 01 Dec, 2012 1 commit
-
-
David Michael Barr committed
-
- 29 Nov, 2012 11 commits
-
-
Push! By schu, phkelley, and congyiwu
Vicent Martí committed -
Philip Kelley committed
-
Philip Kelley committed
-
Philip Kelley committed
-
Philip Kelley committed
-
Philip Kelley committed
-
Ignore invalid entries by default
Vicent Martí committed -
Fix git_branch_tracking() for branches with empty merge and/or remote config entries
Vicent Martí committed -
fetch: enhance test coverage
Vicent Martí committed -
Enhance diff test coverage between a null Tree and the Workdir
Vicent Martí committed -
Consolidate text buffer functions
Vicent Martí committed
-
- 28 Nov, 2012 12 commits
-
-
nulltoken committed
-
nulltoken committed
-
nulltoken committed
-
nulltoken committed
-
nulltoken committed
-
There are many scattered functions that look into the contents of buffers to do various text manipulations (such as escaping or unescaping data, calculating text stats, guessing if content is binary, etc). This groups all those functions together into a new file and converts the code to use that. This has two enhancements to existing functionality. The old text stats function is significantly rewritten and the BOM detection code was extended (although largely we can't deal with anything other than a UTF8 BOM).
Russell Belfer committed -
Philip Kelley committed
-
Fix uninitialized variable
Vicent Martí committed -
clang-SVN HEAD kindly provided my the info, that sm_repo maybe uninitialized when we want to free it (If the expression in line 358 or 359/360 evaluate to true, we jump to "cleanup", where we'd use sm_repo uninitialized).
Sascha Cunz committed -
Vicent Marti committed
-
Loads a disk alternate by path to the ODB. Mimics the `GIT_ALTERNATE_OBJECT_DIRECTORIES` shell var.
Vicent Marti committed -
The Great Renaming of 2012
Ben Straub committed
-
- 27 Nov, 2012 14 commits
-
-
Russell Belfer committed
-
This makes the first OID param of the ODB callback a const pointer and also propogates that change all the way to the backends.
Russell Belfer committed -
Russell Belfer committed
-
Russell Belfer committed
-
Ben Straub committed
-
Ben Straub committed
-
Ben Straub committed
-
Ben Straub committed
-
Ben Straub committed
-
Ben Straub committed
-
Ben Straub committed
-
Includes typedef for git_direction, and renames for GIT_DIR_[FETCH|PUSH] to GIT_DIRECTION_(\1).
Ben Straub committed -
Ben Straub committed
-
Ben Straub committed
-