summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | | | worktree: use strbuf_add_absolute_path() directlyrs/worktree-use-strbuf-absolute-pathRené Scharfe2016-07-121-2/+2
* | | | | | | | | Merge branch 'rs/rm-strbuf-optim'Junio C Hamano2016-07-251-2/+3
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | rm: reuse strbuf for all remove_dir_recursively() callsrs/rm-strbuf-optimRené Scharfe2016-07-121-2/+3
* | | | | | | | | | Merge branch 'rw/make-needs-librt'Junio C Hamano2016-07-252-3/+11
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | config.mak.uname: define NEEDS_LIBRT under Linux, for nowrw/make-needs-librtEric Wong2016-07-111-0/+2
| * | | | | | | | | | Makefile: add NEEDS_LIBRT to optionally link with librtRonald Wampler2016-07-071-3/+9
| | |_|_|/ / / / / / | |/| | | | | | | |
* | | | | | | | | | Merge branch 'js/ignore-space-at-eol'Junio C Hamano2016-07-253-3/+13
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | diff: fix a double off-by-one with --ignore-space-at-eoljs/ignore-space-at-eolJohannes Schindelin2016-07-113-4/+6
| * | | | | | | | | | diff: demonstrate a bug with --patience and --ignore-space-at-eolJohannes Schindelin2016-07-111-0/+8
| | |_|_|_|/ / / / / | |/| | | | | | | |
* | | | | | | | | | Merge branch 'mh/ref-iterators'Junio C Hamano2016-07-2511-324/+1460
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | for_each_reflog(): reimplement using iteratorsmh/ref-iteratorsMichael Haggerty2016-06-202-42/+78
| * | | | | | | | | | dir_iterator: new API for iterating over a directory treeMichael Haggerty2016-06-203-0/+290
| * | | | | | | | | | for_each_reflog(): don't abort for bad referencesMichael Haggerty2016-06-201-1/+1
| * | | | | | | | | | do_for_each_ref(): reimplement using reference iterationMichael Haggerty2016-06-204-213/+77
| * | | | | | | | | | refs: introduce an iterator interfaceMichael Haggerty2016-06-206-1/+915
| * | | | | | | | | | ref_resolves_to_object(): new functionMichael Haggerty2016-06-201-7/+20
| * | | | | | | | | | entry_resolves_to_object(): rename function from ref_resolves_to_object()Michael Haggerty2016-06-201-3/+3
| * | | | | | | | | | get_ref_cache(): only create an instance if there is a submoduleMichael Haggerty2016-06-201-11/+22
| * | | | | | | | | | remote rm: handle symbolic refs correctlyMichael Haggerty2016-06-201-5/+1
| * | | | | | | | | | delete_refs(): add a flags argumentMichael Haggerty2016-06-204-7/+8
| * | | | | | | | | | refs: use name "prefix" consistentlyMichael Haggerty2016-06-202-19/+19
| * | | | | | | | | | do_for_each_ref(): move docstring to the header fileMichael Haggerty2016-06-202-10/+9
| * | | | | | | | | | refs: remove unnecessary "extern" keywordsMichael Haggerty2016-06-131-61/+73
* | | | | | | | | | | Merge branch 'mh/update-ref-errors'Junio C Hamano2016-07-253-213/+449
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | lock_ref_for_update(): avoid a symref resolutionmh/update-ref-errorsMichael Haggerty2016-06-201-1/+1
| * | | | | | | | | | | lock_ref_for_update(): make error handling more uniformMichael Haggerty2016-06-202-39/+49
| * | | | | | | | | | | t1404: add more tests of update-ref error handlingMichael Haggerty2016-06-201-2/+219
| * | | | | | | | | | | t1404: document function test_update_rejectedMichael Haggerty2016-06-201-0/+10
| * | | | | | | | | | | t1404: remove "prefix" argument to test_update_rejectedMichael Haggerty2016-06-201-14/+13
| * | | | | | | | | | | t1404: rename file to t1404-update-ref-errors.shMichael Haggerty2016-06-201-1/+1
| |/ / / / / / / / / /
* | | | | | | | | | | Merge branch 'mh/split-under-lock'Junio C Hamano2016-07-2510-260/+1016
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / /
| * | | | | | | | | | lock_ref_sha1_basic(): only handle REF_NODEREF modemh/split-under-lockMichael Haggerty2016-06-131-34/+20
| * | | | | | | | | | commit_ref_update(): remove the flags parameterMichael Haggerty2016-06-131-7/+7
| * | | | | | | | | | lock_ref_for_update(): don't resolve symrefsMichael Haggerty2016-06-132-30/+95
| * | | | | | | | | | lock_ref_for_update(): don't re-read non-symbolic referencesMichael Haggerty2016-06-131-18/+30
| * | | | | | | | | | refs: resolve symbolic refs firstMichael Haggerty2016-06-133-40/+514
| * | | | | | | | | | ref_transaction_update(): check refname_is_safe() at a minimumMichael Haggerty2016-06-133-4/+5
| * | | | | | | | | | unlock_ref(): move definition higher in the fileMichael Haggerty2016-06-131-10/+10
| * | | | | | | | | | lock_ref_for_update(): new functionMichael Haggerty2016-06-131-67/+85
| * | | | | | | | | | add_update(): initialize the whole ref_updateMichael Haggerty2016-06-132-22/+40
| * | | | | | | | | | verify_refname_available(): adjust constness in declarationMichael Haggerty2016-06-132-4/+4
| * | | | | | | | | | refs: don't dereference on renameDavid Turner2016-06-132-5/+25
| * | | | | | | | | | refs: allow log-only updatesDavid Turner2016-06-132-6/+17
| * | | | | | | | | | delete_branches(): use resolve_refdup()Michael Haggerty2016-06-131-8/+11
| * | | | | | | | | | ref_transaction_commit(): correctly report close_ref() failureMichael Haggerty2016-06-131-0/+1
| * | | | | | | | | | ref_transaction_create(): disallow recursive pruningMichael Haggerty2016-06-133-2/+5
| * | | | | | | | | | refs: make error messages more consistentMichael Haggerty2016-06-133-22/+22
| * | | | | | | | | | lock_ref_sha1_basic(): remove unneeded local variableMichael Haggerty2016-06-131-6/+3
| * | | | | | | | | | read_raw_ref(): move docstring to header fileMichael Haggerty2016-06-132-38/+38
| * | | | | | | | | | read_raw_ref(): improve docstringMichael Haggerty2016-06-131-17/+24