aboutsummaryrefslogtreecommitdiffstats
path: root/walker.c
AgeCommit message (Expand)AuthorFilesLines
2023-10-02tree-walk: init_tree_desc take an oid to get the hash algorithmEric W. Biederman1-1/+1
2023-06-21object-store-ll.h: split this header out of object-store.hElijah Newren1-1/+2
2023-04-11treewide: remove cache.h inclusion due to object.h changesElijah Newren1-1/+1
2023-04-04Merge branch 'ab/remove-implicit-use-of-the-repository' into en/header-split-...Junio C Hamano1-3/+3
2023-03-28cocci: apply the "object-store.h" part of "the_repository.pending"Ævar Arnfjörð Bjarmason1-1/+1
2023-03-28cocci: apply the "commit.h" part of "the_repository.pending"Ævar Arnfjörð Bjarmason1-2/+2
2023-03-21treewide: be explicit about dependence on gettext.hElijah Newren1-0/+1
2023-02-23cache.h: remove dependence on hex.h; make other files include it explicitlyElijah Newren1-0/+1
2022-09-01git-compat-util.h: use "UNUSED", not "UNUSED(var)"Ævar Arnfjörð Bjarmason1-3/+3
2022-08-19refs: mark unused each_ref_fn parametersJeff King1-2/+4
2021-04-13lookup_unknown_object(): take a repository argumentJeff King1-1/+1
2020-03-09Merge branch 'rs/show-progress-in-dumb-http-fetch'Junio C Hamano1-1/+12
2020-03-03remote-curl: show progress for fetches over dumb HTTPRené Scharfe1-1/+12
2020-01-30walker_fetch(): avoid raw array length computationJeff King1-1/+3
2019-06-20object: convert lookup_unknown_object() to use object_idJeff King1-1/+1
2019-01-15tree-walk: store object_id in a separate memberbrian m. carlson1-2/+2
2018-06-29commit: add repository argument to lookup_commit_reference_gentlyStefan Beller1-1/+2
2018-06-29tree: add repository argument to lookup_treeStefan Beller1-1/+2
2018-06-29blob: add repository argument to lookup_blobStefan Beller1-1/+2
2018-06-29object: add repository argument to parse_objectStefan Beller1-1/+2
2018-06-29Merge branch 'sb/object-store-grafts' into sb/object-store-lookupJunio C Hamano1-0/+1
2018-05-23Merge branch 'ds/lazy-load-trees'Junio C Hamano1-1/+1
2018-05-16object-store: move object access functions to object-store.hStefan Beller1-0/+1
2018-04-24walker: drop fields of `struct walker` which are always 1Martin Ågren1-11/+8
2018-04-11treewide: replace maybe_tree with accessor methodsDerrick Stolee1-1/+1
2018-04-11treewide: rename tree to maybe_treeDerrick Stolee1-1/+1
2018-02-14object: rename function 'typename' to 'type_name'Brandon Williams1-2/+2
2017-10-16refs: update ref transactions to use struct object_idbrian m. carlson1-1/+1
2017-10-16walker: convert to struct object_idbrian m. carlson1-12/+12
2017-05-08object: convert parse_object* to take struct object_idbrian m. carlson1-1/+1
2017-05-08Convert lookup_tree to struct object_idbrian m. carlson1-1/+1
2017-05-08Convert lookup_blob to struct object_idbrian m. carlson1-1/+1
2017-05-08Convert lookup_commit* to struct object_idbrian m. carlson1-1/+1
2016-07-08walker: let walker_say take arbitrary formatsJeff King1-3/+7
2016-04-25struct name_entry: use struct object_id instead of unsigned char sha1[20]brian m. carlson1-2/+2
2016-01-15strbuf: introduce strbuf_getline_{lf,nul}()Junio C Hamano1-1/+1
2015-11-20Remove get_object_hash.brian m. carlson1-4/+4
2015-11-20Convert struct object to object_idbrian m. carlson1-4/+4
2015-11-20Add several uses of get_object_hash.brian m. carlson1-4/+4
2015-11-20Convert struct ref to use object_id.brian m. carlson1-1/+1
2015-10-05drop strcpy in favor of raw sha1_to_hexJeff King1-3/+2
2015-05-25mark_complete(): rewrite to take an object_id argumentMichael Haggerty1-6/+5
2015-05-25each_ref_fn: change to take an object_id parameterMichael Haggerty1-1/+4
2015-02-17ref_transaction_update(): remove "have_old" parameterMichael Haggerty1-1/+1
2015-02-11Merge branch 'jk/blame-commit-label'Junio C Hamano1-1/+1
2015-01-13use xstrdup_or_null to replace ternary conditionalsJeff King1-1/+1
2014-10-15refs.c: pass the ref log message to _create/delete/update instead of _commitRonnie Sahlberg1-3/+2
2014-09-18use REALLOC_ARRAY for changing the allocation size of arraysRené Scharfe1-2/+2
2014-09-11Merge branch 'rs/list-optim'Junio C Hamano1-2/+5
2014-09-11Merge branch 'rs/ref-transaction-1'Junio C Hamano1-36/+45
2014-09-03walker.c: use ref transaction for ref updatesRonnie Sahlberg1-30/+40
2014-08-25walker: avoid quadratic list insertion in mark_completeRené Scharfe1-2/+4
2014-06-19walker_fetch: fix minor memory leakJeff King1-9/+9
2014-03-25object.h: centralize object flag allocationNguyễn Thái Ngọc Duy1-0/+1
2013-06-06clear parsed flag when we free tree buffersJeff King1-4/+1
2011-10-05Change check_ref_format() to take a flags argumentMichael Haggerty1-1/+1
2010-11-29commit: Add commit_list prefix in two function names.Thiago Farina1-1/+1
2009-07-22janitor: useless checks before freePierre Habouzit1-1/+1
2009-02-10Drop double-semicolon in CJunio C Hamano1-1/+1
2008-10-18make alloc_ref_from_str() the new alloc_ref()René Scharfe1-1/+1
2008-10-12Replace calls to strbuf_init(&foo, 0) with STRBUF_INIT initializerBrandon Casey1-2/+1
2008-06-04Fix "git clone http://$URL" to check out the worktree when askedJeff King1-0/+1
2008-05-11alloc_ref_from_str(): factor out a common pattern of alloc_ref from stringKrzysztof Kowalczyk1-2/+1
2008-04-26Make walker.fetch_ref() take a struct ref.Daniel Barkalow1-1/+6
2008-02-25Remove unused object-ref codeMartin Koegler1-1/+0
2007-12-17Clarify error response from 'git fetch' for bad responsesSam Vilain1-1/+1
2007-10-16Merge branch 'master' into db/fetch-packShawn O. Pearce1-4/+3
2007-09-19Modularize commit-walkerDaniel Barkalow1-0/+318