summaryrefslogtreecommitdiff
path: root/sha1_file.c
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'jc/fsck'Junio C Hamano2007-03-101-8/+19
|\
| * unpack_sha1_file(): detect corrupt loose object files.Junio C Hamano2007-03-051-8/+19
* | Cast 64 bit off_t to 32 bit size_tShawn O. Pearce2007-03-071-17/+23
* | Use off_t when we really mean a file offset.Shawn O. Pearce2007-03-071-25/+29
* | Use uint32_t for all packed object counts.Shawn O. Pearce2007-03-071-5/+5
* | General const correctness fixesShawn O. Pearce2007-03-071-2/+1
* | Fix mmap leak caused by reading bad indexes.Shawn O. Pearce2007-03-071-9/+16
* | Display the null SHA-1 as the base for an OBJ_OFS_DELTA.Shawn O. Pearce2007-03-071-0/+1
|/
* index_fd(): convert blob only if it is a regular file.Junio C Hamano2007-02-281-1/+1
* index_fd(): pass optional path parameter as hint for blob conversionJunio C Hamano2007-02-281-3/+3
* index_fd(): use enum object_type instead of type name string.Junio C Hamano2007-02-281-6/+7
* convert object type handling from a string to a numberNicolas Pitre2007-02-271-90/+82
* formalize typename(), and add its reverse type_from_string()Nicolas Pitre2007-02-271-14/+5
* sha1_file.c: don't ignore an error condition in sha1_loose_object_info()Nicolas Pitre2007-02-271-1/+1
* sha1_file.c: cleanup "offset" usageNicolas Pitre2007-02-271-59/+51
* sha1_file.c: cleanup hdr usageNicolas Pitre2007-02-271-12/+12
*-. Merge branches 'lt/crlf' and 'jc/apply-config'Junio C Hamano2007-02-221-2/+21
|\ \
| * | Lazy man's auto-CRLFLinus Torvalds2007-02-141-2/+21
| |/
* | pretend-sha1: grave bugfix.Junio C Hamano2007-02-151-1/+3
* | sha1_file.c: Round the mmap offset to half the window size.Alexandre Julliard2007-02-141-5/+3
|/
* Mark places that need blob munging later for CRLF conversion.Linus Torvalds2007-02-131-0/+1
* Add pretend_sha1_file() interface.Junio C Hamano2007-02-051-0/+57
* Assorted typo fixesPavel Roskin2007-02-031-1/+1
* Don't leak file descriptors from unavailable pack files.Shawn O. Pearce2007-02-021-1/+16
* Don't find objects in packs which aren't available anymore.Shawn O. Pearce2007-02-011-0/+12
* Refactor open_packed_git to return an error code.Shawn O. Pearce2007-02-011-15/+16
* Correct comment in prepare_packed_git_one.Shawn O. Pearce2007-02-011-1/+4
* Cleanup prepare_packed_git_one to reuse install_packed_git.Shawn O. Pearce2007-02-011-2/+1
* Refactor the pack header reading function out of receive-pack.cJunio C Hamano2007-01-241-0/+21
* sha1_file.c: Avoid multiple calls to find_pack_entry().Peter Eriksen2007-01-221-10/+9
* Use fixed-size integers for .idx file I/OJunio C Hamano2007-01-181-3/+3
* Document pack .idx file format upgrade strategy.Shawn O. Pearce2007-01-171-3/+14
* Remove read_or_die in favor of better error messages.Shawn O. Pearce2007-01-141-2/+4
* Clean up write_in_full() usersLinus Torvalds2007-01-111-8/+1
* Avoid errors and warnings when attempting to do I/O on zero bytesEric Wong2007-01-111-0/+2
* Fix warnings in sha1_file.c - use C99 printf format if availablePavel Roskin2007-01-091-4/+11
* short i/o: fix calls to write to use xwrite or write_in_fullAndy Whitcroft2007-01-081-13/+6
* short i/o: fix calls to read to use xread or read_in_fullAndy Whitcroft2007-01-081-1/+1
* mmap: set FD_CLOEXEC for file descriptors we keep open for mmap()Junio C Hamano2006-12-291-0/+11
* Replace mmap with xmmap, better handling MAP_FAILED.Shawn O. Pearce2006-12-291-13/+5
* Release pack windows before reporting out of memory.Shawn O. Pearce2006-12-291-0/+7
* Create pack_report() as a debugging aid.Shawn O. Pearce2006-12-291-0/+31
* Support unmapping windows on 'temporary' packfiles.Shawn O. Pearce2006-12-291-16/+28
* Improve error message when packfile mmap fails.Shawn O. Pearce2006-12-291-1/+3
* Fully activate the sliding window pack access.Shawn O. Pearce2006-12-291-13/+53
* Unmap individual windows rather than entire files.Shawn O. Pearce2006-12-291-15/+30
* Document why header parsing won't exceed a window.Shawn O. Pearce2006-12-291-4/+12
* Loop over pack_windows when inflating/accessing data.Shawn O. Pearce2006-12-291-7/+15
* Replace use_packed_git with window cursors.Shawn O. Pearce2006-12-291-46/+64
* Refactor how we open pack files to prepare for multiple windows.Shawn O. Pearce2006-12-291-40/+46