summaryrefslogtreecommitdiff
path: root/read-cache.c
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'cc/untracked'Junio C Hamano2016-02-101-2/+25
|\
| * config: add core.untrackedCacheChristian Couder2016-01-271-2/+25
* | Merge branch 'nd/ita-cleanup'Junio C Hamano2016-01-201-2/+2
|\ \ | |/ |/|
| * add and use a convenience macro ce_intent_to_add()Nguyễn Thái Ngọc Duy2015-09-061-2/+2
* | Merge branch 'dt/name-hash-dir-entry-fix'Junio C Hamano2015-10-291-15/+1
|\ \
| * | name-hash: don't reuse cache_entry in dir_entrydt/name-hash-dir-entry-fixDavid Turner2015-10-211-15/+1
* | | Merge branch 'tk/sigchain-unnecessary-post-tempfile'Junio C Hamano2015-10-291-1/+0
|\ \ \
| * | | read-cache: remove unused #include "sigchain.h"Tobias Klauser2015-10-221-1/+0
* | | | read-cache: fix indentation in read_index_fromsb/read-cache-one-indent-style-fixStefan Beller2015-08-311-1/+1
* | | | Merge branch 'mh/tempfile'Junio C Hamano2015-08-251-33/+7
|\ \ \ \ | |/ / /
| * | | write_shared_index(): use tempfile moduleMichael Haggerty2015-08-101-32/+6
| * | | lockfile: add accessors get_lock_file_fd() and get_lock_file_fp()Michael Haggerty2015-08-101-1/+1
* | | | Merge branch 'nd/untracked-cache'Junio C Hamano2015-06-241-1/+2
|\ \ \ \
| * | | | read-cache: fix untracked cache invalidation when split-index is usednd/untracked-cacheNguyễn Thái Ngọc Duy2015-06-081-1/+2
* | | | | Merge branch 'jk/diagnose-config-mmap-failure'Junio C Hamano2015-06-111-1/+1
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | read-cache.c: drop PROT_WRITE from mmap of indexJeff King2015-05-281-1/+1
| | |/ / | |/| |
* | | | Merge branch 'nd/untracked-cache'Junio C Hamano2015-05-261-10/+45
|\ \ \ \ | | |/ / | |/| / | |_|/ |/| |
| * | untracked cache: mark index dirty if untracked cache is updatedNguyễn Thái Ngọc Duy2015-03-121-1/+1
| * | untracked cache: avoid racy timestampsNguyễn Thái Ngọc Duy2015-03-121-0/+8
| * | read-cache.c: split racy stat test to a separate functionNguyễn Thái Ngọc Duy2015-03-121-9/+15
| * | untracked cache: invalidate at index addition or removalNguyễn Thái Ngọc Duy2015-03-121-0/+4
| * | untracked cache: load from UNTR index extensionNguyễn Thái Ngọc Duy2015-03-121-0/+5
| * | untracked cache: save to an index extensionNguyễn Thái Ngọc Duy2015-03-121-0/+12
* | | Merge branch 'sb/leaks'Junio C Hamano2015-03-271-10/+12
|\ \ \
| * | | read-cache: fix memleakStefan Beller2015-03-231-5/+2
| * | | add_to_index(): free unused cache-entryJunio C Hamano2015-03-231-3/+5
| * | | read-cache: free cache entry in add_to_index in case of early returnStefan Beller2015-03-221-2/+5
| |/ /
* | | Merge branch 'tg/fix-check-order-with-split-index'Junio C Hamano2015-03-251-19/+23
|\ \ \ | |/ / |/| |
| * | read-cache: fix reading of split indextg/fix-check-order-with-split-indexThomas Gummerer2015-03-201-19/+23
| |/
* | Merge branch 'sb/plug-leak-in-make-cache-entry'Junio C Hamano2015-02-251-2/+8
|\ \ | |/ |/|
| * read-cache.c: free cache entry when refreshing failssb/plug-leak-in-make-cache-entryStefan Beller2015-02-171-2/+8
* | Sync with v2.1.4Junio C Hamano2014-12-171-2/+8
|\ \
| * \ Sync with v2.0.5Junio C Hamano2014-12-171-2/+8
| |\ \
| | * \ Sync with v1.9.5Junio C Hamano2014-12-171-2/+8
| | |\ \ | | | |/
| | | * Sync with v1.8.5.6Junio C Hamano2014-12-171-2/+8
| | | |\
| | | | * read-cache: optionally disallow NTFS .git variantsJohannes Schindelin2014-12-171-0/+2
| | | | * read-cache: optionally disallow HFS+ .git variantsJeff King2014-12-171-0/+3
| | | | * verify_dotfile(): reject .git case-insensitivelyJeff King2014-12-171-2/+3
| * | | | Merge branch 'rs/refresh-beyond-symlink' into maintJunio C Hamano2014-09-191-0/+8
| |\ \ \ \
* | | | | | lockfile.h: extract new header file for the functions in lockfile.cmh/lockfileMichael Haggerty2014-10-011-0/+1
* | | | | | hold_locked_index(): move from lockfile.c to read-cache.cMichael Haggerty2014-10-011-0/+8
* | | | | | commit_lock_file_to(): refactor a helper out of commit_lock_file()Michael Haggerty2014-10-011-10/+3
* | | | | | lockfile: change lock_file::filename into a strbufMichael Haggerty2014-10-011-2/+2
* | | | | | lockfile: avoid transitory invalid statesMichael Haggerty2014-10-011-0/+1
* | | | | | close_lock_file(): exit (successfully) if file is already closedMichael Haggerty2014-10-011-1/+1
* | | | | | Merge branch 'jp/index-with-corrupt-stages'Junio C Hamano2014-09-191-1/+18
|\ \ \ \ \ \
| * | | | | | read_index_unmerged(): remove unnecessary loop index adjustmentjp/index-with-corrupt-stagesJaime Soriano Pastor2014-08-291-1/+0
| * | | | | | read_index_from(): catch out of order entries when reading an index fileJaime Soriano Pastor2014-08-291-0/+18
| | |_|/ / / | |/| | | |
| * | | | | Merge branch 'ym/fix-opportunistic-index-update-race' into maintJunio C Hamano2014-06-251-1/+46
| |\ \ \ \ \
* | \ \ \ \ \ Merge branch 'ta/config-set-2'Junio C Hamano2014-09-111-11/+3
|\ \ \ \ \ \ \