summaryrefslogtreecommitdiff
path: root/bisect.c
AgeCommit message (Expand)AuthorFilesLines
2014-09-11Merge branch 'jk/name-decoration-alloc'Libravatar Junio C Hamano1-3/+4
2014-08-26log-tree: make add_name_decoration a public functionLibravatar Jeff King1-3/+4
2014-04-03Merge branch 'nd/log-show-linear-break'Libravatar Junio C Hamano1-2/+1
2014-03-25object.h: centralize object flag allocationLibravatar Nguyễn Thái Ngọc Duy1-2/+1
2014-02-27Merge branch 'ep/varscope'Libravatar Junio C Hamano1-1/+1
2014-01-31bisect.c: reduce scope of variableLibravatar Elia Pinto1-1/+1
2013-12-05replace {pre,suf}fixcmp() with {starts,ends}_with()Libravatar Christian Couder1-2/+2
2013-08-28list-objects: reduce one argument in mark_edges_uninterestingLibravatar Nguyễn Thái Ngọc Duy1-1/+1
2013-06-02register_ref(): make a copy of the bad reference SHA-1Libravatar Michael Haggerty1-2/+3
2013-04-07Merge branch 'jk/bisect-prn-unsigned'Libravatar Junio C Hamano1-2/+2
2013-04-03bisect: avoid signed integer overflowLibravatar John Keeping1-2/+2
2012-10-29Move estimate_bisect_steps to libgit.aLibravatar Nguyễn Thái Ngọc Duy1-0/+38
2012-09-04Call git_pathdup() rather than xstrdup(git_path("..."))Libravatar Ramsay Jones1-1/+1
2012-05-03bisect: copy filename string obtained from git_path()Libravatar Michael Haggerty1-3/+5
2011-10-13Merge branch 'rs/pending'Libravatar Junio C Hamano1-10/+10
2011-10-05Merge branch 'jk/argv-array'Libravatar Junio C Hamano1-37/+11
2011-10-03commit: factor out clear_commit_marks_for_object_arrayLibravatar René Scharfe1-5/+2
2011-10-03bisect: use leak_pending flagLibravatar René Scharfe1-5/+8
2011-09-14bisect: use argv_array APILibravatar Jeff King1-37/+11
2011-08-04bisect: introduce support for --no-checkout option.Libravatar Jon Seymour1-11/+22
2011-05-19bisect: refactor sha1_array into a generic sha1 listLibravatar Jeff King1-55/+15
2010-07-23bisect: use find_commit_subject() instead of custom codeLibravatar Christian Couder1-8/+5
2010-03-01Merge branch 'cc/maint-bisect-paths'Libravatar Junio C Hamano1-0/+6
2010-03-01bisect: error out when passing bad path parametersLibravatar Christian Couder1-0/+6
2010-01-20Merge branch 'jc/symbol-static'Libravatar Junio C Hamano1-1/+1
2010-01-19Merge branch 'maint'Libravatar Junio C Hamano1-3/+5
2010-01-19bisect: fix singular/plural grammar nitLibravatar David Ripton1-3/+5
2010-01-11bisect.c: mark file-local function staticLibravatar Junio C Hamano1-1/+1
2010-01-03Use warning function instead of fprintf(stderr, "Warning: ...").Libravatar Thiago Farina1-2/+2
2009-08-26git-bisect: call the found commit "*the* first bad commit"Libravatar Nanako Shiraishi1-1/+1
2009-07-06Merge branch 'tr/die_errno'Libravatar Junio C Hamano1-3/+2
2009-07-01Merge branch 'cc/bisect'Libravatar Junio C Hamano1-11/+39
2009-06-27Convert existing die(..., strerror(errno)) to die_errno()Libravatar Thomas Rast1-3/+2
2009-06-20Fix various sparse warnings in the git source codeLibravatar Linus Torvalds1-2/+2
2009-06-13bisect: use a PRNG with a bias when skipping away from untestable commitsLibravatar Christian Couder1-11/+39
2009-06-06bisect: when skipping, choose a commit away from a skipped commitLibravatar Christian Couder1-1/+49
2009-06-06bisect: add parameters to "filter_skipped"Libravatar Christian Couder1-4/+36
2009-05-28bisect: display first bad commit without forking a new processLibravatar Christian Couder1-3/+27
2009-05-27bisect: drop unparse_commit() and use clear_commit_marks()Libravatar Christian Couder1-1/+1
2009-05-17bisect: check ancestors without forking a "git rev-list" processLibravatar Christian Couder1-32/+22
2009-05-17bisect: rework some rev related functions to make them more reusableLibravatar Christian Couder1-11/+14
2009-05-10bisect: make "git bisect" use new "--next-all" bisect-helper functionLibravatar Christian Couder1-1/+3
2009-05-10bisect: add "check_good_are_ancestors_of_bad" functionLibravatar Christian Couder1-0/+75
2009-05-10bisect: implement the "check_merge_bases" functionLibravatar Christian Couder1-0/+130
2009-05-10bisect: automatically sort sha1_array if needed when looking it upLibravatar Christian Couder1-2/+6
2009-05-10bisect: make skipped array functions more genericLibravatar Christian Couder1-12/+12
2009-05-10bisect: remove too much function nestingLibravatar Christian Couder1-10/+8
2009-05-10bisect: use new "struct argv_array" to prepare argv for "setup_revisions"Libravatar Christian Couder1-28/+29
2009-05-10bisect: store good revisions in a "sha1_array"Libravatar Christian Couder1-7/+19
2009-05-10bisect: implement "rev_argv_push" to fill an argv with revsLibravatar Christian Couder1-8/+11