summaryrefslogtreecommitdiff
path: root/refs.c
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'jk/prune-top-level-refs-after-packing'Junio C Hamano2014-09-111-1/+1
|\
| * pack-refs: prune top-level refs like "refs/foo"jk/prune-top-level-refs-after-packingJeff King2014-08-251-1/+2
| * add object_as_type helper for casting objectsJeff King2014-07-281-2/+1
* | Merge branch 'rs/ref-transaction-1'Junio C Hamano2014-09-111-105/+140
|\ \
| * | refs.c: make delete_ref use a transactionRonnie Sahlberg2014-09-031-21/+14
| * | refs.c: make prune_ref use a transaction to delete the refRonnie Sahlberg2014-09-031-7/+21
| * | refs.c: remove lock_ref_sha1Ronnie Sahlberg2014-09-031-10/+5
| * | refs.c: remove the update_ref_write functionRonnie Sahlberg2014-09-031-26/+8
| * | refs.c: remove the update_ref_lock functionRonnie Sahlberg2014-09-031-24/+6
| * | refs.c: make lock_ref_sha1 staticRonnie Sahlberg2014-09-031-2/+5
| * | refs.c: change update_ref to use a transactionRonnie Sahlberg2014-09-031-4/+26
| * | refs.c: add transaction.status and track OPEN/CLOSEDRonnie Sahlberg2014-09-031-1/+33
| * | refs.c: make ref_transaction_begin take an err argumentRonnie Sahlberg2014-09-031-1/+1
| * | refs.c: update ref_transaction_delete to check for error and return statusRonnie Sahlberg2014-09-031-5/+11
| * | refs.c: change ref_transaction_create to do error checking and return statusRonnie Sahlberg2014-09-031-6/+12
* | | Revert "Merge branch 'dt/refs-check-refname-component-sse'"Junio C Hamano2014-07-281-216/+18
* | | Revert "Merge branch 'dt/refs-check-refname-component-sse-fix'"Junio C Hamano2014-07-281-2/+1
* | | Merge branch 'jk/alloc-commit-id'Junio C Hamano2014-07-221-2/+1
|\ \ \
| * | | add object_as_type helper for casting objectsJeff King2014-07-131-2/+1
* | | | Merge branch 'rs/unify-is-branch'Junio C Hamano2014-07-211-1/+1
|\ \ \ \
| * | | | refs.c: add a public is_branch functionrs/unify-is-branchRonnie Sahlberg2014-07-161-1/+1
| | |_|/ | |/| |
* | | | Merge branch 'rs/ref-transaction-0'Junio C Hamano2014-07-211-53/+125
|\ \ \ \ | | |_|/ | |/| |
| * | | refs.c: change ref_transaction_update() to do error checking and return statusrs/ref-transaction-0Ronnie Sahlberg2014-07-141-6/+12
| * | | refs.c: remove the onerr argument to ref_transaction_commitRonnie Sahlberg2014-07-141-15/+7
| * | | refs.c: make update_ref_write update a strbuf on failureRonnie Sahlberg2014-07-141-3/+6
| * | | refs.c: make ref_update_reject_duplicates take a strbuf argument for errorsRonnie Sahlberg2014-07-141-1/+5
| * | | refs.c: log_ref_write should try to return meaningful errnoRonnie Sahlberg2014-07-141-5/+23
| * | | refs.c: make resolve_ref_unsafe set errno to something meaningful on errorRonnie Sahlberg2014-07-141-4/+15
| * | | refs.c: commit_packed_refs to return a meaningful errno on failureRonnie Sahlberg2014-07-141-1/+9
| * | | refs.c: make remove_empty_directories always set errno to something saneRonnie Sahlberg2014-07-141-1/+4
| * | | refs.c: verify_lock should set errno to something meaningfulRonnie Sahlberg2014-07-141-0/+4
| * | | refs.c: make sure log_ref_setup returns a meaningful errnoRonnie Sahlberg2014-07-141-8/+19
| * | | refs.c: add an err argument to repack_without_refsRonnie Sahlberg2014-07-141-5/+14
| * | | lockfile.c: make lock_file return a meaningful errno on failureiRonnie Sahlberg2014-07-141-0/+1
| * | | refs.c: add a strbuf argument to ref_transaction_commit for error loggingRonnie Sahlberg2014-07-141-1/+5
| * | | refs.c: allow passing NULL to ref_transaction_freeRonnie Sahlberg2014-07-141-0/+3
| * | | refs.c: constify the sha arguments for ref_transaction_create|delete|updateRonnie Sahlberg2014-07-141-3/+4
| * | | refs.c: ref_transaction_commit should not free the transactionRonnie Sahlberg2014-07-141-1/+0
| * | | refs.c: remove ref_transaction_rollbackRonnie Sahlberg2014-07-141-6/+1
| | |/ | |/|
* | | Merge branch 'jk/strip-suffix'Junio C Hamano2014-07-161-2/+2
|\ \ \
| * | | replace has_extension with ends_withJeff King2014-06-301-2/+2
| | |/ | |/|
* | | Merge branch 'dt/refs-check-refname-component-sse-fix'Junio C Hamano2014-07-101-1/+2
|\ \ \
| * | | refs.c: handle REFNAME_REFSPEC_PATTERN at end of pageDavid Turner2014-07-071-1/+2
* | | | Merge branch 'dt/refs-check-refname-component-sse'Junio C Hamano2014-07-021-18/+216
|\ \ \ \ | |/ / / | | | / | |_|/ |/| |
| * | refs.c: SSE2 optimizations for check_refname_componentdt/refs-check-refname-component-sseDavid Turner2014-06-181-18/+216
* | | Merge branch 'dt/refs-check-refname-component-optim'Junio C Hamano2014-06-161-28/+39
|\ \ \ | |/ /
| * | refs.c: optimize check_refname_component()dt/refs-check-refname-component-optimDavid Turner2014-06-051-28/+39
* | | Merge branch 'rs/read-ref-at'Junio C Hamano2014-06-161-105/+103
|\ \ \
| * | | refs.c: change read_ref_at to use the reflog iteratorsrs/read-ref-atRonnie Sahlberg2014-06-031-105/+103
* | | | Merge branch 'jl/remote-rm-prune'Junio C Hamano2014-06-161-2/+19
|\ \ \ \ | | |_|/ | |/| |