aboutsummaryrefslogtreecommitdiffstats
path: root/read-cache.c
AgeCommit message (Expand)AuthorFilesLines
2005-10-01[PATCH] Better error reporting for "git status"Linus Torvalds1-5/+9
2005-09-24Diff clean-up.Junio C Hamano1-1/+1
2005-09-20Show modified files in git-ls-filesJunio C Hamano1-0/+77
2005-09-11[PATCH] Fix buffer overflow in ce_flush().Qingning Huo1-0/+7
2005-08-16[PATCH] Improve handling of "." and ".." in git-diff-*Linus Torvalds1-0/+2
2005-07-29[PATCH] mmap error handlingPavel Roskin1-2/+2
2005-07-14Make "ce_match_path()" a generic helper functionLinus Torvalds1-0/+24
2005-06-25[PATCH] Fix oversimplified optimization for add_cache_entry().Junio C Hamano1-11/+21
2005-06-18read-cache.c: remove stray debugging printfLinus Torvalds1-1/+0
2005-06-18Re-implement "check_file_directory_conflict()"Linus Torvalds1-89/+88
2005-06-10[PATCH] Bugfix: read-cache.c:write_cache() misrecords number of entries.Junio C Hamano1-2/+6
2005-06-09git-read-tree: remove deleted files in the working directoryLinus Torvalds1-0/+2
2005-06-07[PATCH] Use ntohs instead of htons to convert ce_flags to host byte orderTimo Hirvonen1-5/+5
2005-05-27[PATCH] check_file_directory_conflict path fixDavid Meybohm1-1/+3
2005-05-22Don't care about st_dev in the index fileLinus Torvalds1-4/+14
2005-05-22Include file cleanups..Linus Torvalds1-1/+0
2005-05-20Introduce "base_name_compare()" helper functionLinus Torvalds1-0/+19
2005-05-19[PATCH] Implement git-checkout-cache -u to update stat information in the cache.Junio C Hamano1-0/+20
2005-05-18[PATCH] Kill a bunch of pointer sign warnings for gcc4Brian Gerst1-1/+1
2005-05-15Rename some more cache-related functionsBrad Roberts1-7/+7
2005-05-15Rename cache_match_stat() to ce_match_stat()Brad Roberts1-1/+1
2005-05-08A stylistic fix to read-cache.cJunio C Hamano1-1/+1
2005-05-07Add git-update-cache --replace option.Junio C Hamano1-15/+39
2005-05-07git-update-cache refuses to add a file where a directory is registed.Junio C Hamano1-0/+85
2005-05-06[PATCH] Do not initialize sha1_file_directory by hand.Junio C Hamano1-5/+0
2005-05-06Revert bogus optimization that avoids index file writesLinus Torvalds1-1/+4
2005-05-06[PATCH] fix compare symlink against readlink not dataKay Sievers1-3/+3
2005-05-05[PATCH] git and symlinks as tracked contentKay Sievers1-0/+10
2005-04-26Allow writing to the private index file mapping.Linus Torvalds1-1/+1
2005-04-26[PATCH] introduce xmalloc and xreallocChristopher Li1-1/+1
2005-04-22New "diff-cache" implementation.Linus Torvalds1-2/+2
2005-04-21Add support for a "GIT_INDEX_FILE" environment variable.Linus Torvalds1-1/+1
2005-04-21Fix NSEC compile problem, and properly parse the rev-tree cmd line.Linus Torvalds1-2/+2
2005-04-20Make the sha1 of the index file go at the very end of the file.Linus Torvalds1-23/+21
2005-04-20Speed up index file writing by chunking it nicely.Linus Torvalds1-4/+39
2005-04-18Split up read-cache.c into more logical clumps.Linus Torvalds1-270/+0
2005-04-18[PATCH] fix bug in read-cache.c which loses files when merging a treeJames Bottomley1-1/+0
2005-04-17[PATCH] Fix +x-related show-diff false positivesPetr Baudis1-1/+1
2005-04-17[PATCH] update-cache --remove marks the path merged.Junio C Hamano1-1/+3
2005-04-16Be much more liberal about the file mode bits.Linus Torvalds1-1/+2
2005-04-16When inserting a index entry of stage 0, remove all old unmerged entries.Linus Torvalds1-5/+31
2005-04-15Make cache entry comparison take the new "state" flag into account.Linus Torvalds1-3/+9
2005-04-15Convert the index file reading/writing to use network byte order.Linus Torvalds1-27/+29
2005-04-13Fix read-cache.c collission check logic.Linus Torvalds1-11/+28
2005-04-13[PATCH] Whitespace FixesIngo Molnar1-1/+1
2005-04-13[PATCH] Consolidate the error handlingPetr Baudis1-14/+30
2005-04-13[PATCH] Make nsec checking optionalPetr Baudis1-4/+13
2005-04-13[PATCH] SHA1 naive collision checkingPetr Baudis1-2/+19
2005-04-11Rename ".dircache" directory to ".git"Linus Torvalds1-1/+1
2005-04-11Fix "usage()" to do the missing line termination.Linus Torvalds1-1/+3
2005-04-10Fix off-by-one error in removal of cache entry.Linus Torvalds1-7/+7
2005-04-10Add "-R" flag to "diff-tree", so that it will recursively traverse a tree of ...Linus Torvalds1-4/+4
2005-04-10Make "update-cache" a bit friendlier to use (and harder to mis-use).Linus Torvalds1-3/+10
2005-04-09This implements the new "recursive tree" write-tree.Linus Torvalds1-2/+3
2005-04-09Export "cache_name_compare()" helper function.Linus Torvalds1-1/+1
2005-04-09Make "write_cache()" and friends available as generic routines.Linus Torvalds1-2/+70
2005-04-09Make the cache stat information comparator public.Linus Torvalds1-0/+23
2005-04-09Make "cache_name_pos()" available to others.Linus Torvalds1-0/+36
2005-04-09Fix missing return values and some error tests for empty index filesLinus Torvalds1-2/+1
2005-04-08Add "check_sha1_signature()" helper functionLinus Torvalds1-0/+11
2005-04-08Factor out "read_sha1_file" into mapping/inflating/unmapping.Linus Torvalds1-9/+31
2005-04-08Use "-Wall -O2" for the compiler to get more warnings.Linus Torvalds1-2/+3
2005-04-07Add copyright notices.Linus Torvalds1-0/+5
2005-04-07Initial revision of "git", the information manager from hellLinus Torvalds1-0/+259