aboutsummaryrefslogtreecommitdiffstats
path: root/server-info.c
AgeCommit message (Expand)AuthorFilesLines
2023-07-05git-compat-util: move alloc macros to git-compat-util.hCalvin Wan1-1/+0
2023-07-05treewide: remove unnecessary includes for wrapper.hCalvin Wan1-1/+0
2023-06-21object-store-ll.h: split this header out of object-store.hElijah Newren1-1/+1
2023-06-21repository: remove unnecessary include of path.hElijah Newren1-0/+1
2023-04-24server-info.h: move declarations for server-info.c functions from cache.hElijah Newren1-1/+2
2023-04-11object-file.h: move declarations for object-file.c functions from cache.hElijah Newren1-0/+1
2023-03-21environment.h: move declarations for environment.c functions from cache.hElijah Newren1-0/+1
2023-03-21wrapper.h: move declarations for wrapper.c functions from cache.hElijah Newren1-0/+1
2023-03-21treewide: remove unnecessary cache.h inclusion from a few headersElijah Newren1-1/+1
2023-02-23cache.h: remove dependence on hex.h; make other files include it explicitlyElijah Newren1-0/+1
2023-02-23alloc.h: move ALLOC_GROW() functions from cache.hElijah Newren1-1/+2
2022-09-01git-compat-util.h: use "UNUSED", not "UNUSED(var)"Ævar Arnfjörð Bjarmason1-1/+1
2022-08-19refs: mark unused each_ref_fn parametersJeff King1-1/+2
2021-07-13*.c static functions: add missing __attribute__((format))Ævar Arnfjörð Bjarmason1-0/+1
2021-03-13use CALLOC_ARRAYRené Scharfe1-1/+1
2019-11-10Fix spelling errors in code commentsElijah Newren1-1/+1
2019-06-17Merge branch 'ew/server-info-remove-crufts'Junio C Hamano1-11/+7
2019-05-28server-info: do not list unlinked packsEric Wong1-11/+7
2019-05-15update-server-info: avoid needless overwritesEric Wong1-24/+116
2019-04-16update_info_refs(): drop unused force parameterJeff King1-2/+2
2019-04-16server-info: drop objdirlen pointer arithmeticJeff King1-8/+2
2019-04-16server-info: drop nr_alloc struct memberJeff King1-1/+1
2019-04-16server-info: use strbuf to read old info/packs fileJeff King1-10/+8
2019-04-16server-info: simplify cleanup in parse_pack_def()Jeff King1-3/+4
2019-04-16server-info: fix blind pointer arithmeticJeff King1-10/+12
2018-08-20treewide: use get_all_packsDerrick Stolee1-2/+2
2018-06-29tag: add repository argument to deref_tagStefan Beller1-1/+1
2018-06-29object: add repository argument to parse_objectStefan Beller1-1/+1
2018-05-02server-info: remove unused members from struct pack_infobrian m. carlson1-7/+2
2018-03-26packfile: keep prepare_packed_git() privateNguyễn Thái Ngọc Duy1-1/+0
2018-03-26packfile: add repository argument to prepare_packed_gitStefan Beller1-1/+1
2018-03-26object-store: move packed_git and packed_git_mru to object storeStefan Beller1-2/+4
2017-08-23pack: move {,re}prepare_packed_git and approximate_object_countJonathan Tan1-0/+1
2017-06-13Merge branch 'nd/fopen-errors'Junio C Hamano1-1/+1
2017-05-26wrapper.c: add and use fopen_or_warn()Nguyễn Thái Ngọc Duy1-1/+1
2017-05-08object: convert parse_object* to take struct object_idbrian m. carlson1-1/+1
2017-04-17server-info: avoid calling fclose(3) twice in update_info_file()René Scharfe1-3/+5
2016-09-29use QSORTRené Scharfe1-1/+1
2016-05-09server-info.c: use error_errno()Nguyễn Thái Ngọc Duy1-1/+1
2015-11-20Convert struct object to object_idbrian m. carlson1-1/+1
2015-05-25add_info_ref(): rewrite to take an object_id argumentMichael Haggerty1-7/+5
2015-05-25each_ref_fn: change to take an object_id parameterMichael Haggerty1-1/+4
2015-01-06update-server-info: create info/* with mode 0666Jeff King1-1/+1
2014-09-15server-info: clean up after writing info/packsJeff King1-0/+9
2014-09-15make update-server-info more robustJeff King1-45/+71
2010-07-19update-server-info: Shorten read_pack_info_file()Ralf Thielow1-3/+0
2009-05-18Merge branch 'ar/unlink-err'Junio C Hamano1-1/+1
2009-05-01Fix a bunch of pointer declarations (codestyle)Felipe Contreras1-2/+2
2009-04-29replace direct calls to unlink(2) with unlink_or_warnAlex Riesen1-1/+1
2008-10-30Use git_pathdup instead of xstrdup(git_path(...))Alex Riesen1-1/+1
2008-01-04Don't access line[-1] for a zero-length "line" from fgets.Jim Meyering1-1/+1
2007-11-25Print the real filename that we failed to open.André Goddard Rosa1-1/+1
2007-07-11Fix core.sharedRepository = 2Johannes Schindelin1-0/+2
2007-01-31Don't coredump on bad refs in update-server-info.Shawn O. Pearce1-0/+2
2006-09-20Tell between packed, unpacked and symbolic refs.Junio C Hamano1-1/+1
2006-09-20Add callback data to for_each_ref() family.Junio C Hamano1-2/+2
2006-09-02Replace uses of strdup with xstrdup.Shawn Pearce1-1/+1
2006-07-12Remove TYPE_* constant macros and use object_type enums consistently.Linus Torvalds1-1/+1
2006-07-09Assorted typo fixesPavel Roskin1-1/+1
2006-06-17Shrink "struct object" a bitLinus Torvalds1-1/+1
2005-12-21server-info: skip empty lines.Junio C Hamano1-1/+4
2005-12-21objects/info/packs: work around bug in http-fetch.c::fetch_indices()Junio C Hamano1-0/+1
2005-12-08qsort(): ptrdiff_t may be larger than intJunio C Hamano1-1/+6
2005-12-05server-info.c: and two functions are not used anymore.Junio C Hamano1-33/+0
2005-12-05server-info.c: use pack_local like everybody else.Junio C Hamano1-4/+2
2005-12-04server-info: throw away T computation as well.Junio C Hamano1-130/+3
2005-12-04server-info: stop sorting packs by latest date.Junio C Hamano1-36/+3
2005-12-04server-info.c: drop unused D lines.Junio C Hamano1-110/+10
2005-11-15Rework object refs tracking to reduce memory usageSergey Vlasov1-7/+18
2005-11-02Be careful when dereferencing tags.Junio C Hamano1-3/+4
2005-10-15Show peeled onion from upload-pack and server-info.Junio C Hamano1-0/+7
2005-10-08Reduce memory usage in git-update-server-info.robfitz@273k.net1-0/+10
2005-09-15Unoptimize info/refs creation.Junio C Hamano1-26/+0
2005-09-15Retire info/rev-cacheJunio C Hamano1-41/+0
2005-08-29Revert "Replace zero-length array decls with []."Junio C Hamano1-1/+1
2005-08-23Replace zero-length array decls with [].Jason Riedy1-1/+1
2005-08-01[PATCH] Fix sparse warningsLinus Torvalds1-1/+1
2005-07-29server-info: do not complain if a tag points at a non-commit.Junio C Hamano1-4/+11
2005-07-23[PATCH] Add update-server-info.Junio C Hamano1-0/+565