summaryrefslogtreecommitdiff
path: root/refs.c
AgeCommit message (Expand)AuthorFilesLines
2015-05-11is_refname_available(): revamp the commentsMichael Haggerty1-22/+47
2015-05-10refs.c: remove lock_fd from struct ref_lockStefan Beller1-10/+5
2015-04-16read_packed_refs: avoid double-checking sane refsJeff King1-2/+4
2015-03-25Merge branch 'jk/prune-with-corrupt-refs'Junio C Hamano1-66/+6
2015-03-20refs.c: drop curate_packed_refsJeff King1-66/+1
2015-03-20refs: introduce a "ref paranoia" flagJeff King1-0/+5
2015-03-10Merge branch 'mh/expire-updateref-fixes'Junio C Hamano1-28/+37
2015-03-05reflog_expire(): never update a reference to null_sha1Michael Haggerty1-2/+5
2015-03-05reflog_expire(): ignore --updateref for symbolic referencesMichael Haggerty1-3/+12
2015-03-05struct ref_lock: delete the force_write memberStefan Beller1-5/+9
2015-03-05lock_ref_sha1_basic(): do not set force_write for missing referencesMichael Haggerty1-9/+6
2015-03-05write_ref_sha1(): move write elision test to callersMichael Haggerty1-9/+9
2015-03-05write_ref_sha1(): remove check for lock == NULLMichael Haggerty1-4/+0
2015-02-24Merge branch 'jk/blame-commit-label' into maintJunio C Hamano1-2/+1
2015-02-17update_ref(): improve documentationMichael Haggerty1-4/+4
2015-02-17ref_transaction_verify(): new function to check a reference's valueMichael Haggerty1-8/+39
2015-02-17ref_transaction_delete(): check that old_sha1 is not null_sha1Michael Haggerty1-0/+2
2015-02-17ref_transaction_create(): check that new_sha1 is validMichael Haggerty1-0/+2
2015-02-17ref_transaction_delete(): remove "have_old" parameterMichael Haggerty1-5/+6
2015-02-17ref_transaction_update(): remove "have_old" parameterMichael Haggerty1-10/+8
2015-02-17struct ref_update: move "have_old" into "flags"Michael Haggerty1-17/+28
2015-02-17refs.c: change some "flags" to "unsigned int"Michael Haggerty1-9/+9
2015-02-12refs: remove the gap in the REF_* constant valuesMichael Haggerty1-1/+2
2015-02-12refs: move REF_DELETING to refs.cMichael Haggerty1-0/+6
2015-02-11Merge branch 'mh/reflog-expire'Junio C Hamano1-82/+181
2015-02-11Merge branch 'jk/blame-commit-label'Junio C Hamano1-2/+1
2015-02-09Merge branch 'mh/reflog-expire' into mh/ref-trans-value-checkJunio C Hamano1-82/+181
2015-01-13use xstrdup_or_null to replace ternary conditionalsJeff King1-2/+1
2014-12-29refs: plug strbuf leak in lock_ref_sha1_basic()René Scharfe1-1/+1
2014-12-22Merge branch 'jk/read-packed-refs-without-path-max'Junio C Hamano1-21/+25
2014-12-22Merge branch 'jk/for-each-reflog-ent-reverse'Junio C Hamano1-12/+37
2014-12-22Merge branch 'mh/simplify-repack-without-refs'Junio C Hamano1-18/+20
2014-12-22refs.c: let fprintf handle the formattingStefan Beller1-5/+2
2014-12-22refs.c: don't expose the internal struct ref_lock in the header fileStefan Beller1-0/+9
2014-12-22lock_any_ref_for_update(): inline functionMichael Haggerty1-8/+1
2014-12-22refs.c: remove unlock_ref/close_ref/commit_ref from the refs apiRonnie Sahlberg1-12/+12
2014-12-22reflog_expire(): new function in the reference APIMichael Haggerty1-0/+129
2014-12-12refs.c: add a function to append a reflog entry to a fdRonnie Sahlberg1-18/+30
2014-12-10read_packed_refs: use skip_prefix instead of static arrayJeff King1-3/+2
2014-12-10read_packed_refs: pass strbuf to parse_ref_lineJeff King1-12/+15
2014-12-10read_packed_refs: use a strbuf for reading linesJeff King1-9/+11
2014-12-05for_each_reflog_ent_reverse: turn leftover check into assertionJeff King1-1/+1
2014-12-05for_each_reflog_ent_reverse: fix newlines on block boundariesJeff King1-11/+36
2014-12-04refs.c: make ref_transaction_delete a wrapper for ref_transaction_updateRonnie Sahlberg1-20/+2
2014-12-04refs.c: make ref_transaction_create a wrapper for ref_transaction_updateRonnie Sahlberg1-25/+2
2014-12-01git_snpath(): retire and replace with strbuf_git_path()Nguyễn Thái Ngọc Duy1-9/+42
2014-12-01path.c: make get_pathname() call sites return const char *Nguyễn Thái Ngọc Duy1-4/+4
2014-11-25repack_without_refs(): make the refnames argument a string_listMichael Haggerty1-18/+20
2014-11-20lock_ref_sha1_basic: do not die on locking errorsRonnie Sahlberg1-2/+8
2014-11-06Merge branch 'jk/fetch-reflog-df-conflict'Junio C Hamano1-2/+2