| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge branch 'np/progress' | Junio C Hamano | 2007-11-14 | 1 | -7/+7 |
|\ |
|
| * | nicer display of thin pack completion | Nicolas Pitre | 2007-11-08 | 1 | -5/+5 |
| * | make display of total transferred more accurate | Nicolas Pitre | 2007-11-05 | 1 | -2/+2 |
* | | Merge branch 'maint' | Junio C Hamano | 2007-11-11 | 1 | -1/+1 |
|\ \
| |/
|/| |
|
| * | fix index-pack with packs >4GB containing deltas on 32-bit machines | Nicolas Pitre | 2007-11-11 | 1 | -1/+1 |
* | | Merge branch 'np/pack' | Junio C Hamano | 2007-11-04 | 1 | -0/+13 |
|\ \ |
|
| * | | make the pack index version configurable | Nicolas Pitre | 2007-11-02 | 1 | -0/+13 |
| |/ |
|
* | | add throughput display to index-pack | Nicolas Pitre | 2007-10-30 | 1 | -1/+5 |
* | | relax usage of the progress API | Nicolas Pitre | 2007-10-30 | 1 | -13/+7 |
* | | make struct progress an opaque type | Nicolas Pitre | 2007-10-30 | 1 | -6/+6 |
* | | fix for more minor memory leaks | Nicolas Pitre | 2007-10-17 | 1 | -0/+4 |
* | | fix const issues with some functions | Nicolas Pitre | 2007-10-17 | 1 | -4/+4 |
* | | more compact progress display | Nicolas Pitre | 2007-10-17 | 1 | -2/+2 |
|/ |
|
* | Use xmkstemp() instead of mkstemp() | Luiz Fernando N. Capitulino | 2007-08-14 | 1 | -1/+1 |
* | detect close failure on just-written file handles | Jim Meyering | 2007-06-26 | 1 | -1/+2 |
* | Unify write_index_file functions | Geert Bosch | 2007-06-02 | 1 | -171/+37 |
* | Ensure return value from xread() is always stored into an ssize_t | Johan Herland | 2007-05-15 | 1 | -1/+1 |
* | Reuse fixup_pack_header_footer in index-pack | Shawn O. Pearce | 2007-05-02 | 1 | -32/+2 |
* | make progress "title" part of the common progress interface | Nicolas Pitre | 2007-04-22 | 1 | -8/+4 |
* | common progress display support | Nicolas Pitre | 2007-04-22 | 1 | -55/+23 |
* | allow forcing index v2 and 64-bit offset treshold | Nicolas Pitre | 2007-04-10 | 1 | -3/+15 |
* | index-pack: learn about pack index version 2 | Nicolas Pitre | 2007-04-10 | 1 | -9/+57 |
* | compute object CRC32 with index-pack | Nicolas Pitre | 2007-04-10 | 1 | -3/+13 |
* | add overflow tests on pack offset variables | Nicolas Pitre | 2007-04-10 | 1 | -4/+10 |
* | make overflow test on delta base offset work regardless of variable size | Nicolas Pitre | 2007-04-10 | 1 | -1/+1 |
* | Plug memory leak in index-pack collision checking codepath. | Nicolas Pitre | 2007-04-03 | 1 | -0/+1 |
* | make it more obvious that temporary files are temporary files | Nicolas Pitre | 2007-03-24 | 1 | -2/+2 |
* | index-pack: more validation checks and cleanups | Nicolas Pitre | 2007-03-20 | 1 | -9/+9 |
* | index-pack: use hash_sha1_file() | Nicolas Pitre | 2007-03-20 | 1 | -20/+1 |
* | don't ever allow SHA1 collisions to exist by fetching a pack | Nicolas Pitre | 2007-03-20 | 1 | -4/+17 |
* | General const correctness fixes | Shawn O. Pearce | 2007-03-07 | 1 | -1/+1 |
* | Merge branch 'js/bundle' | Junio C Hamano | 2007-02-28 | 1 | -1/+2 |
|\ |
|
| * | git-bundle: assorted fixes | Johannes Schindelin | 2007-02-22 | 1 | -2/+3 |
| * | Add git-bundle: move objects and references by archive | Johannes Schindelin | 2007-02-22 | 1 | -2/+2 |
* | | Merge branch 'np/types' | Junio C Hamano | 2007-02-28 | 1 | -11/+4 |
|\ \ |
|
| * | | convert object type handling from a string to a number | Nicolas Pitre | 2007-02-27 | 1 | -6/+4 |
| * | | formalize typename(), and add its reverse type_from_string() | Nicolas Pitre | 2007-02-27 | 1 | -6/+1 |
* | | | Merge branch 'maint' | Junio C Hamano | 2007-02-27 | 1 | -2/+8 |
|\ \ \
| |/ /
|/| | |
|
| * | | index-pack: Loop over pread until data loading is complete. | Shawn O. Pearce | 2007-02-27 | 1 | -2/+8 |
| |/ |
|
* | | Mechanical conversion to use prefixcmp() | Junio C Hamano | 2007-02-20 | 1 | -2/+2 |
|/ |
|
* | index-pack: write-or-die instead of unchecked write-in-full. | Junio C Hamano | 2007-01-11 | 1 | -1/+1 |
* | short i/o: fix calls to write to use xwrite or write_in_full | Andy Whitcroft | 2007-01-08 | 1 | -1/+1 |
* | short i/o: fix calls to read to use xread or read_in_full | Andy Whitcroft | 2007-01-08 | 1 | -1/+1 |
* | clarify some error messages wrt unknown object types | Nicolas Pitre | 2006-12-20 | 1 | -1/+1 |
* | simplify inclusion of system header files. | Junio C Hamano | 2006-12-20 | 1 | -5/+0 |
* | index-pack usage of mmap() is unacceptably slower on many OSes other than Linux | Nicolas Pitre | 2006-12-20 | 1 | -13/+14 |
* | Don't use memcpy when source and dest. buffers may overlap | Jim Meyering | 2006-12-11 | 1 | -1/+1 |
* | sparse fix: non-ANSI function declaration | Rene Scharfe | 2006-11-18 | 1 | -1/+1 |
* | remove .keep pack lock files when done with refs update | Nicolas Pitre | 2006-11-03 | 1 | -15/+23 |
* | have index-pack create .keep file more carefully | Nicolas Pitre | 2006-11-03 | 1 | -7/+10 |