2009-03-26 04:55:24 +00:00
|
|
|
#include "cache.h"
|
2017-06-14 18:07:36 +00:00
|
|
|
#include "config.h"
|
2009-03-26 04:55:24 +00:00
|
|
|
#include "commit.h"
|
|
|
|
#include "diff.h"
|
|
|
|
#include "revision.h"
|
2009-03-26 04:55:54 +00:00
|
|
|
#include "refs.h"
|
|
|
|
#include "list-objects.h"
|
2009-03-26 04:55:59 +00:00
|
|
|
#include "quote.h"
|
2020-12-31 11:56:23 +00:00
|
|
|
#include "hash-lookup.h"
|
2009-04-19 09:56:07 +00:00
|
|
|
#include "run-command.h"
|
2009-05-28 21:21:16 +00:00
|
|
|
#include "log-tree.h"
|
2009-03-26 04:55:24 +00:00
|
|
|
#include "bisect.h"
|
2020-03-30 14:03:46 +00:00
|
|
|
#include "oid-array.h"
|
2020-07-28 20:23:39 +00:00
|
|
|
#include "strvec.h"
|
2018-05-19 05:28:25 +00:00
|
|
|
#include "commit-slab.h"
|
2018-07-20 16:33:04 +00:00
|
|
|
#include "commit-reach.h"
|
2018-09-02 07:42:50 +00:00
|
|
|
#include "object-store.h"
|
2020-08-07 21:58:37 +00:00
|
|
|
#include "dir.h"
|
2009-05-09 15:55:38 +00:00
|
|
|
|
2017-03-31 01:40:00 +00:00
|
|
|
static struct oid_array good_revs;
|
|
|
|
static struct oid_array skipped_revs;
|
2009-03-26 04:55:54 +00:00
|
|
|
|
2015-03-13 23:39:29 +00:00
|
|
|
static struct object_id *current_bad_oid;
|
2009-04-19 09:56:07 +00:00
|
|
|
|
2015-06-29 15:40:29 +00:00
|
|
|
static const char *term_bad;
|
|
|
|
static const char *term_good;
|
|
|
|
|
2014-03-25 13:23:26 +00:00
|
|
|
/* Remember to update object flag allocation in object.h */
|
2009-03-26 04:55:24 +00:00
|
|
|
#define COUNTED (1u<<16)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a truly stupid algorithm, but it's only
|
|
|
|
* used for bisection, and we just don't care enough.
|
|
|
|
*
|
|
|
|
* We care just barely enough to avoid recursing for
|
|
|
|
* non-merge entries.
|
|
|
|
*/
|
|
|
|
static int count_distance(struct commit_list *entry)
|
|
|
|
{
|
|
|
|
int nr = 0;
|
|
|
|
|
|
|
|
while (entry) {
|
|
|
|
struct commit *commit = entry->item;
|
|
|
|
struct commit_list *p;
|
|
|
|
|
|
|
|
if (commit->object.flags & (UNINTERESTING | COUNTED))
|
|
|
|
break;
|
|
|
|
if (!(commit->object.flags & TREESAME))
|
|
|
|
nr++;
|
|
|
|
commit->object.flags |= COUNTED;
|
|
|
|
p = commit->parents;
|
|
|
|
entry = p;
|
|
|
|
if (p) {
|
|
|
|
p = p->next;
|
|
|
|
while (p) {
|
|
|
|
nr += count_distance(p);
|
|
|
|
p = p->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void clear_distance(struct commit_list *list)
|
|
|
|
{
|
|
|
|
while (list) {
|
|
|
|
struct commit *commit = list->item;
|
|
|
|
commit->object.flags &= ~COUNTED;
|
|
|
|
list = list->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-19 05:28:25 +00:00
|
|
|
define_commit_slab(commit_weight, int *);
|
|
|
|
static struct commit_weight commit_weight;
|
|
|
|
|
2009-03-26 04:55:24 +00:00
|
|
|
#define DEBUG_BISECT 0
|
|
|
|
|
|
|
|
static inline int weight(struct commit_list *elem)
|
|
|
|
{
|
2018-05-19 05:28:25 +00:00
|
|
|
return **commit_weight_at(&commit_weight, elem->item);
|
2009-03-26 04:55:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void weight_set(struct commit_list *elem, int weight)
|
|
|
|
{
|
2018-05-19 05:28:25 +00:00
|
|
|
**commit_weight_at(&commit_weight, elem->item) = weight;
|
2009-03-26 04:55:24 +00:00
|
|
|
}
|
|
|
|
|
2020-08-07 21:58:38 +00:00
|
|
|
static int count_interesting_parents(struct commit *commit, unsigned bisect_flags)
|
2009-03-26 04:55:24 +00:00
|
|
|
{
|
|
|
|
struct commit_list *p;
|
|
|
|
int count;
|
|
|
|
|
|
|
|
for (count = 0, p = commit->parents; p; p = p->next) {
|
2020-08-07 21:58:35 +00:00
|
|
|
if (!(p->item->object.flags & UNINTERESTING))
|
|
|
|
count++;
|
2020-08-07 21:58:38 +00:00
|
|
|
if (bisect_flags & FIND_BISECTION_FIRST_PARENT_ONLY)
|
2020-08-07 21:58:35 +00:00
|
|
|
break;
|
2009-03-26 04:55:24 +00:00
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
bisect: loosen halfway() check for a large number of commits
'git bisect start ...' and subsequent 'git bisect (good|bad)' commands
can take quite a while when the given/remaining revision range between
good and bad commits is big and contains a lot of merge commits, e.g.
in git.git:
$ git rev-list --count v1.6.0..v2.28.0
44284
$ time git bisect start v2.28.0 v1.6.0
Bisecting: 22141 revisions left to test after this (roughly 15 steps)
[e197c21807dacadc8305250baa0b9228819189d4] unable_to_lock_die(): rename function from unable_to_lock_index_die()
real 0m15.472s
user 0m15.220s
sys 0m0.255s
The majority of the runtime is spent in do_find_bisection(), where we
try to find a commit as close as possible to the halfway point between
the bad and good revisions, i.e. a commit from which the number of
reachable commits that are in the good-bad range is half the total
number of commits in that range. So we count how many commits are
reachable in the good-bad range for each commit in that range, which
is quick and easy for a linear history, even over 300k commits in a
linear range are handled in ~0.3s on my machine. Alas, handling merge
commits is non-trivial and quite expensive as the algorithm used seems
to be quadratic, causing the long runtime shown above.
Interestingly, look at what a big difference one additional commit
can make:
$ git rev-list --count v1.6.0^..v2.28.0
44285
$ time git bisect start v2.28.0 v1.6.0^
Bisecting: 22142 revisions left to test after this (roughly 15 steps)
[565301e41670825ceedf75220f2918ae76831240] Sync with 2.1.2
real 0m5.848s
user 0m5.600s
sys 0m0.252s
The difference is caused by one of the optimizations attempting to cut
down the runtime added in 1c4fea3a40 (git-rev-list --bisect:
optimization, 2007-03-21):
Another small optimization is whenever we find a half-way commit
(that is, a commit that can reach exactly half of the commits),
we stop giving counts to remaining commits, as we will not find
any better commit than we just found.
In this second 'git bisect start' command we happen to find a commit
exactly at the halfway point and can return early, but in the first
case there is no such commit, so we can't return early and end up
counting the number of reachable commits from all commits in the
good-bad range.
However, when we have thousands of commits it's not all that important
to find the _exact_ halfway point, a few commits more or less doesn't
make any real difference for the bisection.
So let's loosen the check in the halfway() helper to consider commits
within about 0.1% of the exact halfway point as halfway as well, and
rename the function to approx_halfway() accordingly. This will allow
us to return early on a bigger good-bad range, even when there is no
commit exactly at the halfway point, thereby reducing the runtime of
the first command above considerably, from ~15s to 4.901s.
Furthermore, even if there is a commit exactly at the halfway point,
we might still stumble upon a commit within that 0.1% range before
finding the exact halfway point, allowing us to return a bit earlier,
slightly reducing the runtime of the second command from 5.848s to
5.058s. Note that this change doesn't affect good-bad ranges
containing ~2000 commits or less, because that 0.1% tolerance becomes
zero due to integer arithmetic; however, if the range is that small
then counting the reachable commits for all commits is already fast
enough anyway.
Naturally, this will likely change which commits get picked at each
bisection step, and, in turn, might change how many bisection steps
are necessary to find the first bad commit. If the number of
necessary bisection steps were to increase often, then this change
could backfire, because building and testing at each step might take
much longer than the time spared. OTOH, if the number of steps were
to decrease, then it would be a double win.
So I ran some tests to see how often that happens: picked random good
and bad starting revisions at least 50k commits apart and a random
first bad commit in between in git.git, and used 'git bisect run git
merge-base --is-ancestor HEAD $first_bad_commit' to check the number
of necessary bisection steps. After repeating all this 1000 times
both with and without this patch I found that:
- 146 cases needed one more bisection step than before, 149 cases
needed one less step, while in the remaining 705 cases the number
of steps didn't change. So the number of bisection steps does
indeed change in a non-negligible number of cases, but it seems
that the average number of steps doesn't change in the long run.
- The first 'git bisect start' command got over 3x faster in 456
cases, so this "no commit at the exact halfway point" case seems
to be common enough to care about.
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-11-12 16:19:38 +00:00
|
|
|
static inline int approx_halfway(struct commit_list *p, int nr)
|
2009-03-26 04:55:24 +00:00
|
|
|
{
|
bisect: loosen halfway() check for a large number of commits
'git bisect start ...' and subsequent 'git bisect (good|bad)' commands
can take quite a while when the given/remaining revision range between
good and bad commits is big and contains a lot of merge commits, e.g.
in git.git:
$ git rev-list --count v1.6.0..v2.28.0
44284
$ time git bisect start v2.28.0 v1.6.0
Bisecting: 22141 revisions left to test after this (roughly 15 steps)
[e197c21807dacadc8305250baa0b9228819189d4] unable_to_lock_die(): rename function from unable_to_lock_index_die()
real 0m15.472s
user 0m15.220s
sys 0m0.255s
The majority of the runtime is spent in do_find_bisection(), where we
try to find a commit as close as possible to the halfway point between
the bad and good revisions, i.e. a commit from which the number of
reachable commits that are in the good-bad range is half the total
number of commits in that range. So we count how many commits are
reachable in the good-bad range for each commit in that range, which
is quick and easy for a linear history, even over 300k commits in a
linear range are handled in ~0.3s on my machine. Alas, handling merge
commits is non-trivial and quite expensive as the algorithm used seems
to be quadratic, causing the long runtime shown above.
Interestingly, look at what a big difference one additional commit
can make:
$ git rev-list --count v1.6.0^..v2.28.0
44285
$ time git bisect start v2.28.0 v1.6.0^
Bisecting: 22142 revisions left to test after this (roughly 15 steps)
[565301e41670825ceedf75220f2918ae76831240] Sync with 2.1.2
real 0m5.848s
user 0m5.600s
sys 0m0.252s
The difference is caused by one of the optimizations attempting to cut
down the runtime added in 1c4fea3a40 (git-rev-list --bisect:
optimization, 2007-03-21):
Another small optimization is whenever we find a half-way commit
(that is, a commit that can reach exactly half of the commits),
we stop giving counts to remaining commits, as we will not find
any better commit than we just found.
In this second 'git bisect start' command we happen to find a commit
exactly at the halfway point and can return early, but in the first
case there is no such commit, so we can't return early and end up
counting the number of reachable commits from all commits in the
good-bad range.
However, when we have thousands of commits it's not all that important
to find the _exact_ halfway point, a few commits more or less doesn't
make any real difference for the bisection.
So let's loosen the check in the halfway() helper to consider commits
within about 0.1% of the exact halfway point as halfway as well, and
rename the function to approx_halfway() accordingly. This will allow
us to return early on a bigger good-bad range, even when there is no
commit exactly at the halfway point, thereby reducing the runtime of
the first command above considerably, from ~15s to 4.901s.
Furthermore, even if there is a commit exactly at the halfway point,
we might still stumble upon a commit within that 0.1% range before
finding the exact halfway point, allowing us to return a bit earlier,
slightly reducing the runtime of the second command from 5.848s to
5.058s. Note that this change doesn't affect good-bad ranges
containing ~2000 commits or less, because that 0.1% tolerance becomes
zero due to integer arithmetic; however, if the range is that small
then counting the reachable commits for all commits is already fast
enough anyway.
Naturally, this will likely change which commits get picked at each
bisection step, and, in turn, might change how many bisection steps
are necessary to find the first bad commit. If the number of
necessary bisection steps were to increase often, then this change
could backfire, because building and testing at each step might take
much longer than the time spared. OTOH, if the number of steps were
to decrease, then it would be a double win.
So I ran some tests to see how often that happens: picked random good
and bad starting revisions at least 50k commits apart and a random
first bad commit in between in git.git, and used 'git bisect run git
merge-base --is-ancestor HEAD $first_bad_commit' to check the number
of necessary bisection steps. After repeating all this 1000 times
both with and without this patch I found that:
- 146 cases needed one more bisection step than before, 149 cases
needed one less step, while in the remaining 705 cases the number
of steps didn't change. So the number of bisection steps does
indeed change in a non-negligible number of cases, but it seems
that the average number of steps doesn't change in the long run.
- The first 'git bisect start' command got over 3x faster in 456
cases, so this "no commit at the exact halfway point" case seems
to be common enough to care about.
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-11-12 16:19:38 +00:00
|
|
|
int diff;
|
|
|
|
|
2009-03-26 04:55:24 +00:00
|
|
|
/*
|
|
|
|
* Don't short-cut something we are not going to return!
|
|
|
|
*/
|
|
|
|
if (p->item->object.flags & TREESAME)
|
|
|
|
return 0;
|
|
|
|
if (DEBUG_BISECT)
|
|
|
|
return 0;
|
|
|
|
/*
|
bisect: loosen halfway() check for a large number of commits
'git bisect start ...' and subsequent 'git bisect (good|bad)' commands
can take quite a while when the given/remaining revision range between
good and bad commits is big and contains a lot of merge commits, e.g.
in git.git:
$ git rev-list --count v1.6.0..v2.28.0
44284
$ time git bisect start v2.28.0 v1.6.0
Bisecting: 22141 revisions left to test after this (roughly 15 steps)
[e197c21807dacadc8305250baa0b9228819189d4] unable_to_lock_die(): rename function from unable_to_lock_index_die()
real 0m15.472s
user 0m15.220s
sys 0m0.255s
The majority of the runtime is spent in do_find_bisection(), where we
try to find a commit as close as possible to the halfway point between
the bad and good revisions, i.e. a commit from which the number of
reachable commits that are in the good-bad range is half the total
number of commits in that range. So we count how many commits are
reachable in the good-bad range for each commit in that range, which
is quick and easy for a linear history, even over 300k commits in a
linear range are handled in ~0.3s on my machine. Alas, handling merge
commits is non-trivial and quite expensive as the algorithm used seems
to be quadratic, causing the long runtime shown above.
Interestingly, look at what a big difference one additional commit
can make:
$ git rev-list --count v1.6.0^..v2.28.0
44285
$ time git bisect start v2.28.0 v1.6.0^
Bisecting: 22142 revisions left to test after this (roughly 15 steps)
[565301e41670825ceedf75220f2918ae76831240] Sync with 2.1.2
real 0m5.848s
user 0m5.600s
sys 0m0.252s
The difference is caused by one of the optimizations attempting to cut
down the runtime added in 1c4fea3a40 (git-rev-list --bisect:
optimization, 2007-03-21):
Another small optimization is whenever we find a half-way commit
(that is, a commit that can reach exactly half of the commits),
we stop giving counts to remaining commits, as we will not find
any better commit than we just found.
In this second 'git bisect start' command we happen to find a commit
exactly at the halfway point and can return early, but in the first
case there is no such commit, so we can't return early and end up
counting the number of reachable commits from all commits in the
good-bad range.
However, when we have thousands of commits it's not all that important
to find the _exact_ halfway point, a few commits more or less doesn't
make any real difference for the bisection.
So let's loosen the check in the halfway() helper to consider commits
within about 0.1% of the exact halfway point as halfway as well, and
rename the function to approx_halfway() accordingly. This will allow
us to return early on a bigger good-bad range, even when there is no
commit exactly at the halfway point, thereby reducing the runtime of
the first command above considerably, from ~15s to 4.901s.
Furthermore, even if there is a commit exactly at the halfway point,
we might still stumble upon a commit within that 0.1% range before
finding the exact halfway point, allowing us to return a bit earlier,
slightly reducing the runtime of the second command from 5.848s to
5.058s. Note that this change doesn't affect good-bad ranges
containing ~2000 commits or less, because that 0.1% tolerance becomes
zero due to integer arithmetic; however, if the range is that small
then counting the reachable commits for all commits is already fast
enough anyway.
Naturally, this will likely change which commits get picked at each
bisection step, and, in turn, might change how many bisection steps
are necessary to find the first bad commit. If the number of
necessary bisection steps were to increase often, then this change
could backfire, because building and testing at each step might take
much longer than the time spared. OTOH, if the number of steps were
to decrease, then it would be a double win.
So I ran some tests to see how often that happens: picked random good
and bad starting revisions at least 50k commits apart and a random
first bad commit in between in git.git, and used 'git bisect run git
merge-base --is-ancestor HEAD $first_bad_commit' to check the number
of necessary bisection steps. After repeating all this 1000 times
both with and without this patch I found that:
- 146 cases needed one more bisection step than before, 149 cases
needed one less step, while in the remaining 705 cases the number
of steps didn't change. So the number of bisection steps does
indeed change in a non-negligible number of cases, but it seems
that the average number of steps doesn't change in the long run.
- The first 'git bisect start' command got over 3x faster in 456
cases, so this "no commit at the exact halfway point" case seems
to be common enough to care about.
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-11-12 16:19:38 +00:00
|
|
|
* For small number of commits 2 and 3 are halfway of 5, and
|
2009-03-26 04:55:24 +00:00
|
|
|
* 3 is halfway of 6 but 2 and 4 are not.
|
|
|
|
*/
|
bisect: loosen halfway() check for a large number of commits
'git bisect start ...' and subsequent 'git bisect (good|bad)' commands
can take quite a while when the given/remaining revision range between
good and bad commits is big and contains a lot of merge commits, e.g.
in git.git:
$ git rev-list --count v1.6.0..v2.28.0
44284
$ time git bisect start v2.28.0 v1.6.0
Bisecting: 22141 revisions left to test after this (roughly 15 steps)
[e197c21807dacadc8305250baa0b9228819189d4] unable_to_lock_die(): rename function from unable_to_lock_index_die()
real 0m15.472s
user 0m15.220s
sys 0m0.255s
The majority of the runtime is spent in do_find_bisection(), where we
try to find a commit as close as possible to the halfway point between
the bad and good revisions, i.e. a commit from which the number of
reachable commits that are in the good-bad range is half the total
number of commits in that range. So we count how many commits are
reachable in the good-bad range for each commit in that range, which
is quick and easy for a linear history, even over 300k commits in a
linear range are handled in ~0.3s on my machine. Alas, handling merge
commits is non-trivial and quite expensive as the algorithm used seems
to be quadratic, causing the long runtime shown above.
Interestingly, look at what a big difference one additional commit
can make:
$ git rev-list --count v1.6.0^..v2.28.0
44285
$ time git bisect start v2.28.0 v1.6.0^
Bisecting: 22142 revisions left to test after this (roughly 15 steps)
[565301e41670825ceedf75220f2918ae76831240] Sync with 2.1.2
real 0m5.848s
user 0m5.600s
sys 0m0.252s
The difference is caused by one of the optimizations attempting to cut
down the runtime added in 1c4fea3a40 (git-rev-list --bisect:
optimization, 2007-03-21):
Another small optimization is whenever we find a half-way commit
(that is, a commit that can reach exactly half of the commits),
we stop giving counts to remaining commits, as we will not find
any better commit than we just found.
In this second 'git bisect start' command we happen to find a commit
exactly at the halfway point and can return early, but in the first
case there is no such commit, so we can't return early and end up
counting the number of reachable commits from all commits in the
good-bad range.
However, when we have thousands of commits it's not all that important
to find the _exact_ halfway point, a few commits more or less doesn't
make any real difference for the bisection.
So let's loosen the check in the halfway() helper to consider commits
within about 0.1% of the exact halfway point as halfway as well, and
rename the function to approx_halfway() accordingly. This will allow
us to return early on a bigger good-bad range, even when there is no
commit exactly at the halfway point, thereby reducing the runtime of
the first command above considerably, from ~15s to 4.901s.
Furthermore, even if there is a commit exactly at the halfway point,
we might still stumble upon a commit within that 0.1% range before
finding the exact halfway point, allowing us to return a bit earlier,
slightly reducing the runtime of the second command from 5.848s to
5.058s. Note that this change doesn't affect good-bad ranges
containing ~2000 commits or less, because that 0.1% tolerance becomes
zero due to integer arithmetic; however, if the range is that small
then counting the reachable commits for all commits is already fast
enough anyway.
Naturally, this will likely change which commits get picked at each
bisection step, and, in turn, might change how many bisection steps
are necessary to find the first bad commit. If the number of
necessary bisection steps were to increase often, then this change
could backfire, because building and testing at each step might take
much longer than the time spared. OTOH, if the number of steps were
to decrease, then it would be a double win.
So I ran some tests to see how often that happens: picked random good
and bad starting revisions at least 50k commits apart and a random
first bad commit in between in git.git, and used 'git bisect run git
merge-base --is-ancestor HEAD $first_bad_commit' to check the number
of necessary bisection steps. After repeating all this 1000 times
both with and without this patch I found that:
- 146 cases needed one more bisection step than before, 149 cases
needed one less step, while in the remaining 705 cases the number
of steps didn't change. So the number of bisection steps does
indeed change in a non-negligible number of cases, but it seems
that the average number of steps doesn't change in the long run.
- The first 'git bisect start' command got over 3x faster in 456
cases, so this "no commit at the exact halfway point" case seems
to be common enough to care about.
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-11-12 16:19:38 +00:00
|
|
|
diff = 2 * weight(p) - nr;
|
|
|
|
switch (diff) {
|
2009-03-26 04:55:24 +00:00
|
|
|
case -1: case 0: case 1:
|
|
|
|
return 1;
|
|
|
|
default:
|
bisect: loosen halfway() check for a large number of commits
'git bisect start ...' and subsequent 'git bisect (good|bad)' commands
can take quite a while when the given/remaining revision range between
good and bad commits is big and contains a lot of merge commits, e.g.
in git.git:
$ git rev-list --count v1.6.0..v2.28.0
44284
$ time git bisect start v2.28.0 v1.6.0
Bisecting: 22141 revisions left to test after this (roughly 15 steps)
[e197c21807dacadc8305250baa0b9228819189d4] unable_to_lock_die(): rename function from unable_to_lock_index_die()
real 0m15.472s
user 0m15.220s
sys 0m0.255s
The majority of the runtime is spent in do_find_bisection(), where we
try to find a commit as close as possible to the halfway point between
the bad and good revisions, i.e. a commit from which the number of
reachable commits that are in the good-bad range is half the total
number of commits in that range. So we count how many commits are
reachable in the good-bad range for each commit in that range, which
is quick and easy for a linear history, even over 300k commits in a
linear range are handled in ~0.3s on my machine. Alas, handling merge
commits is non-trivial and quite expensive as the algorithm used seems
to be quadratic, causing the long runtime shown above.
Interestingly, look at what a big difference one additional commit
can make:
$ git rev-list --count v1.6.0^..v2.28.0
44285
$ time git bisect start v2.28.0 v1.6.0^
Bisecting: 22142 revisions left to test after this (roughly 15 steps)
[565301e41670825ceedf75220f2918ae76831240] Sync with 2.1.2
real 0m5.848s
user 0m5.600s
sys 0m0.252s
The difference is caused by one of the optimizations attempting to cut
down the runtime added in 1c4fea3a40 (git-rev-list --bisect:
optimization, 2007-03-21):
Another small optimization is whenever we find a half-way commit
(that is, a commit that can reach exactly half of the commits),
we stop giving counts to remaining commits, as we will not find
any better commit than we just found.
In this second 'git bisect start' command we happen to find a commit
exactly at the halfway point and can return early, but in the first
case there is no such commit, so we can't return early and end up
counting the number of reachable commits from all commits in the
good-bad range.
However, when we have thousands of commits it's not all that important
to find the _exact_ halfway point, a few commits more or less doesn't
make any real difference for the bisection.
So let's loosen the check in the halfway() helper to consider commits
within about 0.1% of the exact halfway point as halfway as well, and
rename the function to approx_halfway() accordingly. This will allow
us to return early on a bigger good-bad range, even when there is no
commit exactly at the halfway point, thereby reducing the runtime of
the first command above considerably, from ~15s to 4.901s.
Furthermore, even if there is a commit exactly at the halfway point,
we might still stumble upon a commit within that 0.1% range before
finding the exact halfway point, allowing us to return a bit earlier,
slightly reducing the runtime of the second command from 5.848s to
5.058s. Note that this change doesn't affect good-bad ranges
containing ~2000 commits or less, because that 0.1% tolerance becomes
zero due to integer arithmetic; however, if the range is that small
then counting the reachable commits for all commits is already fast
enough anyway.
Naturally, this will likely change which commits get picked at each
bisection step, and, in turn, might change how many bisection steps
are necessary to find the first bad commit. If the number of
necessary bisection steps were to increase often, then this change
could backfire, because building and testing at each step might take
much longer than the time spared. OTOH, if the number of steps were
to decrease, then it would be a double win.
So I ran some tests to see how often that happens: picked random good
and bad starting revisions at least 50k commits apart and a random
first bad commit in between in git.git, and used 'git bisect run git
merge-base --is-ancestor HEAD $first_bad_commit' to check the number
of necessary bisection steps. After repeating all this 1000 times
both with and without this patch I found that:
- 146 cases needed one more bisection step than before, 149 cases
needed one less step, while in the remaining 705 cases the number
of steps didn't change. So the number of bisection steps does
indeed change in a non-negligible number of cases, but it seems
that the average number of steps doesn't change in the long run.
- The first 'git bisect start' command got over 3x faster in 456
cases, so this "no commit at the exact halfway point" case seems
to be common enough to care about.
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-11-12 16:19:38 +00:00
|
|
|
/*
|
|
|
|
* For large number of commits we are not so strict, it's
|
|
|
|
* good enough if it's within ~0.1% of the halfway point,
|
|
|
|
* e.g. 5000 is exactly halfway of 10000, but we consider
|
|
|
|
* the values [4996, 5004] as halfway as well.
|
|
|
|
*/
|
|
|
|
if (abs(diff) < nr / 1024)
|
|
|
|
return 1;
|
2009-03-26 04:55:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void show_list(const char *debug, int counted, int nr,
|
|
|
|
struct commit_list *list)
|
|
|
|
{
|
|
|
|
struct commit_list *p;
|
|
|
|
|
2018-09-02 07:42:50 +00:00
|
|
|
if (!DEBUG_BISECT)
|
|
|
|
return;
|
|
|
|
|
2009-03-26 04:55:24 +00:00
|
|
|
fprintf(stderr, "%s (%d/%d)\n", debug, counted, nr);
|
|
|
|
|
|
|
|
for (p = list; p; p = p->next) {
|
|
|
|
struct commit_list *pp;
|
|
|
|
struct commit *commit = p->item;
|
2020-08-07 21:58:38 +00:00
|
|
|
unsigned commit_flags = commit->object.flags;
|
2009-03-26 04:55:24 +00:00
|
|
|
enum object_type type;
|
|
|
|
unsigned long size;
|
sha1_file: convert read_sha1_file to struct object_id
Convert read_sha1_file to take a pointer to struct object_id and rename
it read_object_file. Do the same for read_sha1_file_extended.
Convert one use in grep.c to use the new function without any other code
change, since the pointer being passed is a void pointer that is already
initialized with a pointer to struct object_id. Update the declaration
and definitions of the modified functions, and apply the following
semantic patch to convert the remaining callers:
@@
expression E1, E2, E3;
@@
- read_sha1_file(E1.hash, E2, E3)
+ read_object_file(&E1, E2, E3)
@@
expression E1, E2, E3;
@@
- read_sha1_file(E1->hash, E2, E3)
+ read_object_file(E1, E2, E3)
@@
expression E1, E2, E3, E4;
@@
- read_sha1_file_extended(E1.hash, E2, E3, E4)
+ read_object_file_extended(&E1, E2, E3, E4)
@@
expression E1, E2, E3, E4;
@@
- read_sha1_file_extended(E1->hash, E2, E3, E4)
+ read_object_file_extended(E1, E2, E3, E4)
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2018-03-12 02:27:53 +00:00
|
|
|
char *buf = read_object_file(&commit->object.oid, &type,
|
|
|
|
&size);
|
2010-07-22 13:18:33 +00:00
|
|
|
const char *subject_start;
|
|
|
|
int subject_len;
|
2009-03-26 04:55:24 +00:00
|
|
|
|
|
|
|
fprintf(stderr, "%c%c%c ",
|
2020-08-07 21:58:38 +00:00
|
|
|
(commit_flags & TREESAME) ? ' ' : 'T',
|
|
|
|
(commit_flags & UNINTERESTING) ? 'U' : ' ',
|
|
|
|
(commit_flags & COUNTED) ? 'C' : ' ');
|
2018-09-02 07:42:50 +00:00
|
|
|
if (*commit_weight_at(&commit_weight, p->item))
|
2009-03-26 04:55:24 +00:00
|
|
|
fprintf(stderr, "%3d", weight(p));
|
|
|
|
else
|
|
|
|
fprintf(stderr, "---");
|
2018-03-25 10:57:36 +00:00
|
|
|
fprintf(stderr, " %.*s", 8, oid_to_hex(&commit->object.oid));
|
2009-03-26 04:55:24 +00:00
|
|
|
for (pp = commit->parents; pp; pp = pp->next)
|
|
|
|
fprintf(stderr, " %.*s", 8,
|
2018-03-25 10:57:36 +00:00
|
|
|
oid_to_hex(&pp->item->object.oid));
|
2009-03-26 04:55:24 +00:00
|
|
|
|
2010-07-22 13:18:33 +00:00
|
|
|
subject_len = find_commit_subject(buf, &subject_start);
|
|
|
|
if (subject_len)
|
|
|
|
fprintf(stderr, " %.*s", subject_len, subject_start);
|
2009-03-26 04:55:24 +00:00
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct commit_list *best_bisection(struct commit_list *list, int nr)
|
|
|
|
{
|
|
|
|
struct commit_list *p, *best;
|
|
|
|
int best_distance = -1;
|
|
|
|
|
|
|
|
best = list;
|
|
|
|
for (p = list; p; p = p->next) {
|
|
|
|
int distance;
|
2020-08-07 21:58:38 +00:00
|
|
|
unsigned commit_flags = p->item->object.flags;
|
2009-03-26 04:55:24 +00:00
|
|
|
|
2020-08-07 21:58:38 +00:00
|
|
|
if (commit_flags & TREESAME)
|
2009-03-26 04:55:24 +00:00
|
|
|
continue;
|
|
|
|
distance = weight(p);
|
|
|
|
if (nr - distance < distance)
|
|
|
|
distance = nr - distance;
|
|
|
|
if (distance > best_distance) {
|
|
|
|
best = p;
|
|
|
|
best_distance = distance;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return best;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct commit_dist {
|
|
|
|
struct commit *commit;
|
|
|
|
int distance;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int compare_commit_dist(const void *a_, const void *b_)
|
|
|
|
{
|
|
|
|
struct commit_dist *a, *b;
|
|
|
|
|
|
|
|
a = (struct commit_dist *)a_;
|
|
|
|
b = (struct commit_dist *)b_;
|
|
|
|
if (a->distance != b->distance)
|
|
|
|
return b->distance - a->distance; /* desc sort */
|
2015-11-10 02:22:28 +00:00
|
|
|
return oidcmp(&a->commit->object.oid, &b->commit->object.oid);
|
2009-03-26 04:55:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct commit_list *best_bisection_sorted(struct commit_list *list, int nr)
|
|
|
|
{
|
|
|
|
struct commit_list *p;
|
|
|
|
struct commit_dist *array = xcalloc(nr, sizeof(*array));
|
2017-03-28 19:46:50 +00:00
|
|
|
struct strbuf buf = STRBUF_INIT;
|
2009-03-26 04:55:24 +00:00
|
|
|
int cnt, i;
|
|
|
|
|
|
|
|
for (p = list, cnt = 0; p; p = p->next) {
|
|
|
|
int distance;
|
2020-08-07 21:58:38 +00:00
|
|
|
unsigned commit_flags = p->item->object.flags;
|
2009-03-26 04:55:24 +00:00
|
|
|
|
2020-08-07 21:58:38 +00:00
|
|
|
if (commit_flags & TREESAME)
|
2009-03-26 04:55:24 +00:00
|
|
|
continue;
|
|
|
|
distance = weight(p);
|
|
|
|
if (nr - distance < distance)
|
|
|
|
distance = nr - distance;
|
|
|
|
array[cnt].commit = p->item;
|
|
|
|
array[cnt].distance = distance;
|
|
|
|
cnt++;
|
|
|
|
}
|
2016-09-29 15:27:31 +00:00
|
|
|
QSORT(array, cnt, compare_commit_dist);
|
2009-03-26 04:55:24 +00:00
|
|
|
for (p = list, i = 0; i < cnt; i++) {
|
|
|
|
struct object *obj = &(array[i].commit->object);
|
|
|
|
|
2017-03-28 19:46:50 +00:00
|
|
|
strbuf_reset(&buf);
|
|
|
|
strbuf_addf(&buf, "dist=%d", array[i].distance);
|
|
|
|
add_name_decoration(DECORATION_NONE, buf.buf, obj);
|
2014-08-26 10:23:36 +00:00
|
|
|
|
2009-03-26 04:55:24 +00:00
|
|
|
p->item = array[i].commit;
|
bisect: fix off-by-one error in `best_bisection_sorted()`
After we have sorted the `cnt`-many commits that we have selected, we
place them into the commit list. We then set `p->next` to NULL, but as
we do so, `p` is already pointing one beyond item number `cnt`. Indeed,
we check whether `p` is NULL before dereferencing it.
This only matters if there are TREESAME-commits. Since they should be
skipped, they are not included in `cnt` and we will hit the situation
where we set `p->next` to NULL. As a result, the list will be one longer
than it should be. The last commit in the list will be one which occurs
earlier, or which shouldn't be included.
Do not update `p` the very last round in the loop. This ensures that
after the loop, `p->next` points to the remainder of the list, and we
can set it to NULL. While we're here, free that remainder to fix a
memory leak.
Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-11-05 20:24:30 +00:00
|
|
|
if (i < cnt - 1)
|
|
|
|
p = p->next;
|
2009-03-26 04:55:24 +00:00
|
|
|
}
|
2018-01-03 18:48:52 +00:00
|
|
|
if (p) {
|
|
|
|
free_commit_list(p->next);
|
|
|
|
p->next = NULL;
|
|
|
|
}
|
2017-03-28 19:46:50 +00:00
|
|
|
strbuf_release(&buf);
|
2009-03-26 04:55:24 +00:00
|
|
|
free(array);
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* zero or positive weight is the number of interesting commits it can
|
|
|
|
* reach, including itself. Especially, weight = 0 means it does not
|
|
|
|
* reach any tree-changing commits (e.g. just above uninteresting one
|
|
|
|
* but traversal is with pathspec).
|
|
|
|
*
|
|
|
|
* weight = -1 means it has one parent and its distance is yet to
|
|
|
|
* be computed.
|
|
|
|
*
|
|
|
|
* weight = -2 means it has more than one parent and its distance is
|
|
|
|
* unknown. After running count_distance() first, they will get zero
|
|
|
|
* or positive distance.
|
|
|
|
*/
|
|
|
|
static struct commit_list *do_find_bisection(struct commit_list *list,
|
|
|
|
int nr, int *weights,
|
2020-08-07 21:58:38 +00:00
|
|
|
unsigned bisect_flags)
|
2009-03-26 04:55:24 +00:00
|
|
|
{
|
|
|
|
int n, counted;
|
|
|
|
struct commit_list *p;
|
|
|
|
|
|
|
|
counted = 0;
|
|
|
|
|
|
|
|
for (n = 0, p = list; p; p = p->next) {
|
|
|
|
struct commit *commit = p->item;
|
2020-08-07 21:58:38 +00:00
|
|
|
unsigned commit_flags = commit->object.flags;
|
2009-03-26 04:55:24 +00:00
|
|
|
|
2018-05-19 05:28:25 +00:00
|
|
|
*commit_weight_at(&commit_weight, p->item) = &weights[n++];
|
2020-08-07 21:58:38 +00:00
|
|
|
switch (count_interesting_parents(commit, bisect_flags)) {
|
2009-03-26 04:55:24 +00:00
|
|
|
case 0:
|
2020-08-07 21:58:38 +00:00
|
|
|
if (!(commit_flags & TREESAME)) {
|
2009-03-26 04:55:24 +00:00
|
|
|
weight_set(p, 1);
|
|
|
|
counted++;
|
|
|
|
show_list("bisection 2 count one",
|
|
|
|
counted, nr, list);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* otherwise, it is known not to reach any
|
|
|
|
* tree-changing commit and gets weight 0.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
weight_set(p, -1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
weight_set(p, -2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
show_list("bisection 2 initialize", counted, nr, list);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If you have only one parent in the resulting set
|
|
|
|
* then you can reach one commit more than that parent
|
|
|
|
* can reach. So we do not have to run the expensive
|
|
|
|
* count_distance() for single strand of pearls.
|
|
|
|
*
|
|
|
|
* However, if you have more than one parents, you cannot
|
|
|
|
* just add their distance and one for yourself, since
|
|
|
|
* they usually reach the same ancestor and you would
|
|
|
|
* end up counting them twice that way.
|
|
|
|
*
|
|
|
|
* So we will first count distance of merges the usual
|
|
|
|
* way, and then fill the blanks using cheaper algorithm.
|
|
|
|
*/
|
|
|
|
for (p = list; p; p = p->next) {
|
|
|
|
if (p->item->object.flags & UNINTERESTING)
|
|
|
|
continue;
|
|
|
|
if (weight(p) != -2)
|
|
|
|
continue;
|
2020-08-07 21:58:38 +00:00
|
|
|
if (bisect_flags & FIND_BISECTION_FIRST_PARENT_ONLY)
|
2020-08-07 21:58:35 +00:00
|
|
|
BUG("shouldn't be calling count-distance in fp mode");
|
2009-03-26 04:55:24 +00:00
|
|
|
weight_set(p, count_distance(p));
|
|
|
|
clear_distance(list);
|
|
|
|
|
bisect: loosen halfway() check for a large number of commits
'git bisect start ...' and subsequent 'git bisect (good|bad)' commands
can take quite a while when the given/remaining revision range between
good and bad commits is big and contains a lot of merge commits, e.g.
in git.git:
$ git rev-list --count v1.6.0..v2.28.0
44284
$ time git bisect start v2.28.0 v1.6.0
Bisecting: 22141 revisions left to test after this (roughly 15 steps)
[e197c21807dacadc8305250baa0b9228819189d4] unable_to_lock_die(): rename function from unable_to_lock_index_die()
real 0m15.472s
user 0m15.220s
sys 0m0.255s
The majority of the runtime is spent in do_find_bisection(), where we
try to find a commit as close as possible to the halfway point between
the bad and good revisions, i.e. a commit from which the number of
reachable commits that are in the good-bad range is half the total
number of commits in that range. So we count how many commits are
reachable in the good-bad range for each commit in that range, which
is quick and easy for a linear history, even over 300k commits in a
linear range are handled in ~0.3s on my machine. Alas, handling merge
commits is non-trivial and quite expensive as the algorithm used seems
to be quadratic, causing the long runtime shown above.
Interestingly, look at what a big difference one additional commit
can make:
$ git rev-list --count v1.6.0^..v2.28.0
44285
$ time git bisect start v2.28.0 v1.6.0^
Bisecting: 22142 revisions left to test after this (roughly 15 steps)
[565301e41670825ceedf75220f2918ae76831240] Sync with 2.1.2
real 0m5.848s
user 0m5.600s
sys 0m0.252s
The difference is caused by one of the optimizations attempting to cut
down the runtime added in 1c4fea3a40 (git-rev-list --bisect:
optimization, 2007-03-21):
Another small optimization is whenever we find a half-way commit
(that is, a commit that can reach exactly half of the commits),
we stop giving counts to remaining commits, as we will not find
any better commit than we just found.
In this second 'git bisect start' command we happen to find a commit
exactly at the halfway point and can return early, but in the first
case there is no such commit, so we can't return early and end up
counting the number of reachable commits from all commits in the
good-bad range.
However, when we have thousands of commits it's not all that important
to find the _exact_ halfway point, a few commits more or less doesn't
make any real difference for the bisection.
So let's loosen the check in the halfway() helper to consider commits
within about 0.1% of the exact halfway point as halfway as well, and
rename the function to approx_halfway() accordingly. This will allow
us to return early on a bigger good-bad range, even when there is no
commit exactly at the halfway point, thereby reducing the runtime of
the first command above considerably, from ~15s to 4.901s.
Furthermore, even if there is a commit exactly at the halfway point,
we might still stumble upon a commit within that 0.1% range before
finding the exact halfway point, allowing us to return a bit earlier,
slightly reducing the runtime of the second command from 5.848s to
5.058s. Note that this change doesn't affect good-bad ranges
containing ~2000 commits or less, because that 0.1% tolerance becomes
zero due to integer arithmetic; however, if the range is that small
then counting the reachable commits for all commits is already fast
enough anyway.
Naturally, this will likely change which commits get picked at each
bisection step, and, in turn, might change how many bisection steps
are necessary to find the first bad commit. If the number of
necessary bisection steps were to increase often, then this change
could backfire, because building and testing at each step might take
much longer than the time spared. OTOH, if the number of steps were
to decrease, then it would be a double win.
So I ran some tests to see how often that happens: picked random good
and bad starting revisions at least 50k commits apart and a random
first bad commit in between in git.git, and used 'git bisect run git
merge-base --is-ancestor HEAD $first_bad_commit' to check the number
of necessary bisection steps. After repeating all this 1000 times
both with and without this patch I found that:
- 146 cases needed one more bisection step than before, 149 cases
needed one less step, while in the remaining 705 cases the number
of steps didn't change. So the number of bisection steps does
indeed change in a non-negligible number of cases, but it seems
that the average number of steps doesn't change in the long run.
- The first 'git bisect start' command got over 3x faster in 456
cases, so this "no commit at the exact halfway point" case seems
to be common enough to care about.
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-11-12 16:19:38 +00:00
|
|
|
/* Does it happen to be at half-way? */
|
|
|
|
if (!(bisect_flags & FIND_BISECTION_ALL) &&
|
|
|
|
approx_halfway(p, nr))
|
2009-03-26 04:55:24 +00:00
|
|
|
return p;
|
|
|
|
counted++;
|
|
|
|
}
|
|
|
|
|
|
|
|
show_list("bisection 2 count_distance", counted, nr, list);
|
|
|
|
|
|
|
|
while (counted < nr) {
|
|
|
|
for (p = list; p; p = p->next) {
|
|
|
|
struct commit_list *q;
|
2020-08-07 21:58:38 +00:00
|
|
|
unsigned commit_flags = p->item->object.flags;
|
2009-03-26 04:55:24 +00:00
|
|
|
|
|
|
|
if (0 <= weight(p))
|
|
|
|
continue;
|
2020-08-07 21:58:35 +00:00
|
|
|
|
|
|
|
for (q = p->item->parents;
|
|
|
|
q;
|
2020-08-07 21:58:38 +00:00
|
|
|
q = bisect_flags & FIND_BISECTION_FIRST_PARENT_ONLY ? NULL : q->next) {
|
2009-03-26 04:55:24 +00:00
|
|
|
if (q->item->object.flags & UNINTERESTING)
|
|
|
|
continue;
|
|
|
|
if (0 <= weight(q))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!q)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* weight for p is unknown but q is known.
|
|
|
|
* add one for p itself if p is to be counted,
|
|
|
|
* otherwise inherit it from q directly.
|
|
|
|
*/
|
2020-08-07 21:58:38 +00:00
|
|
|
if (!(commit_flags & TREESAME)) {
|
2009-03-26 04:55:24 +00:00
|
|
|
weight_set(p, weight(q)+1);
|
|
|
|
counted++;
|
|
|
|
show_list("bisection 2 count one",
|
|
|
|
counted, nr, list);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
weight_set(p, weight(q));
|
|
|
|
|
bisect: loosen halfway() check for a large number of commits
'git bisect start ...' and subsequent 'git bisect (good|bad)' commands
can take quite a while when the given/remaining revision range between
good and bad commits is big and contains a lot of merge commits, e.g.
in git.git:
$ git rev-list --count v1.6.0..v2.28.0
44284
$ time git bisect start v2.28.0 v1.6.0
Bisecting: 22141 revisions left to test after this (roughly 15 steps)
[e197c21807dacadc8305250baa0b9228819189d4] unable_to_lock_die(): rename function from unable_to_lock_index_die()
real 0m15.472s
user 0m15.220s
sys 0m0.255s
The majority of the runtime is spent in do_find_bisection(), where we
try to find a commit as close as possible to the halfway point between
the bad and good revisions, i.e. a commit from which the number of
reachable commits that are in the good-bad range is half the total
number of commits in that range. So we count how many commits are
reachable in the good-bad range for each commit in that range, which
is quick and easy for a linear history, even over 300k commits in a
linear range are handled in ~0.3s on my machine. Alas, handling merge
commits is non-trivial and quite expensive as the algorithm used seems
to be quadratic, causing the long runtime shown above.
Interestingly, look at what a big difference one additional commit
can make:
$ git rev-list --count v1.6.0^..v2.28.0
44285
$ time git bisect start v2.28.0 v1.6.0^
Bisecting: 22142 revisions left to test after this (roughly 15 steps)
[565301e41670825ceedf75220f2918ae76831240] Sync with 2.1.2
real 0m5.848s
user 0m5.600s
sys 0m0.252s
The difference is caused by one of the optimizations attempting to cut
down the runtime added in 1c4fea3a40 (git-rev-list --bisect:
optimization, 2007-03-21):
Another small optimization is whenever we find a half-way commit
(that is, a commit that can reach exactly half of the commits),
we stop giving counts to remaining commits, as we will not find
any better commit than we just found.
In this second 'git bisect start' command we happen to find a commit
exactly at the halfway point and can return early, but in the first
case there is no such commit, so we can't return early and end up
counting the number of reachable commits from all commits in the
good-bad range.
However, when we have thousands of commits it's not all that important
to find the _exact_ halfway point, a few commits more or less doesn't
make any real difference for the bisection.
So let's loosen the check in the halfway() helper to consider commits
within about 0.1% of the exact halfway point as halfway as well, and
rename the function to approx_halfway() accordingly. This will allow
us to return early on a bigger good-bad range, even when there is no
commit exactly at the halfway point, thereby reducing the runtime of
the first command above considerably, from ~15s to 4.901s.
Furthermore, even if there is a commit exactly at the halfway point,
we might still stumble upon a commit within that 0.1% range before
finding the exact halfway point, allowing us to return a bit earlier,
slightly reducing the runtime of the second command from 5.848s to
5.058s. Note that this change doesn't affect good-bad ranges
containing ~2000 commits or less, because that 0.1% tolerance becomes
zero due to integer arithmetic; however, if the range is that small
then counting the reachable commits for all commits is already fast
enough anyway.
Naturally, this will likely change which commits get picked at each
bisection step, and, in turn, might change how many bisection steps
are necessary to find the first bad commit. If the number of
necessary bisection steps were to increase often, then this change
could backfire, because building and testing at each step might take
much longer than the time spared. OTOH, if the number of steps were
to decrease, then it would be a double win.
So I ran some tests to see how often that happens: picked random good
and bad starting revisions at least 50k commits apart and a random
first bad commit in between in git.git, and used 'git bisect run git
merge-base --is-ancestor HEAD $first_bad_commit' to check the number
of necessary bisection steps. After repeating all this 1000 times
both with and without this patch I found that:
- 146 cases needed one more bisection step than before, 149 cases
needed one less step, while in the remaining 705 cases the number
of steps didn't change. So the number of bisection steps does
indeed change in a non-negligible number of cases, but it seems
that the average number of steps doesn't change in the long run.
- The first 'git bisect start' command got over 3x faster in 456
cases, so this "no commit at the exact halfway point" case seems
to be common enough to care about.
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-11-12 16:19:38 +00:00
|
|
|
/* Does it happen to be at half-way? */
|
|
|
|
if (!(bisect_flags & FIND_BISECTION_ALL) &&
|
|
|
|
approx_halfway(p, nr))
|
2009-03-26 04:55:24 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
show_list("bisection 2 counted all", counted, nr, list);
|
|
|
|
|
2020-08-07 21:58:38 +00:00
|
|
|
if (!(bisect_flags & FIND_BISECTION_ALL))
|
2009-03-26 04:55:24 +00:00
|
|
|
return best_bisection(list, nr);
|
|
|
|
else
|
|
|
|
return best_bisection_sorted(list, nr);
|
|
|
|
}
|
|
|
|
|
2017-11-05 20:24:28 +00:00
|
|
|
void find_bisection(struct commit_list **commit_list, int *reaches,
|
2020-08-07 21:58:38 +00:00
|
|
|
int *all, unsigned bisect_flags)
|
2009-03-26 04:55:24 +00:00
|
|
|
{
|
|
|
|
int nr, on_list;
|
2017-11-05 20:24:28 +00:00
|
|
|
struct commit_list *list, *p, *best, *next, *last;
|
2009-03-26 04:55:24 +00:00
|
|
|
int *weights;
|
|
|
|
|
2017-11-05 20:24:28 +00:00
|
|
|
show_list("bisection 2 entry", 0, 0, *commit_list);
|
2018-05-19 05:28:25 +00:00
|
|
|
init_commit_weight(&commit_weight);
|
2009-03-26 04:55:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Count the number of total and tree-changing items on the
|
|
|
|
* list, while reversing the list.
|
|
|
|
*/
|
2017-11-05 20:24:28 +00:00
|
|
|
for (nr = on_list = 0, last = NULL, p = *commit_list;
|
2009-03-26 04:55:24 +00:00
|
|
|
p;
|
|
|
|
p = next) {
|
2020-08-07 21:58:38 +00:00
|
|
|
unsigned commit_flags = p->item->object.flags;
|
2009-03-26 04:55:24 +00:00
|
|
|
|
|
|
|
next = p->next;
|
2020-08-07 21:58:38 +00:00
|
|
|
if (commit_flags & UNINTERESTING) {
|
2017-11-05 20:24:29 +00:00
|
|
|
free(p);
|
2009-03-26 04:55:24 +00:00
|
|
|
continue;
|
2017-11-05 20:24:29 +00:00
|
|
|
}
|
2009-03-26 04:55:24 +00:00
|
|
|
p->next = last;
|
|
|
|
last = p;
|
2020-08-07 21:58:38 +00:00
|
|
|
if (!(commit_flags & TREESAME))
|
2009-03-26 04:55:24 +00:00
|
|
|
nr++;
|
|
|
|
on_list++;
|
|
|
|
}
|
|
|
|
list = last;
|
|
|
|
show_list("bisection 2 sorted", 0, nr, list);
|
|
|
|
|
|
|
|
*all = nr;
|
2021-03-13 16:17:22 +00:00
|
|
|
CALLOC_ARRAY(weights, on_list);
|
2009-03-26 04:55:24 +00:00
|
|
|
|
|
|
|
/* Do the real work of finding bisection commit. */
|
2020-08-07 21:58:38 +00:00
|
|
|
best = do_find_bisection(list, nr, weights, bisect_flags);
|
2009-03-26 04:55:24 +00:00
|
|
|
if (best) {
|
2020-08-07 21:58:38 +00:00
|
|
|
if (!(bisect_flags & FIND_BISECTION_ALL)) {
|
2017-11-05 20:24:31 +00:00
|
|
|
list->item = best->item;
|
|
|
|
free_commit_list(list->next);
|
|
|
|
best = list;
|
2009-03-26 04:55:24 +00:00
|
|
|
best->next = NULL;
|
2017-11-05 20:24:31 +00:00
|
|
|
}
|
2009-03-26 04:55:24 +00:00
|
|
|
*reaches = weight(best);
|
|
|
|
}
|
|
|
|
free(weights);
|
2017-11-05 20:24:28 +00:00
|
|
|
*commit_list = best;
|
2018-05-19 05:28:25 +00:00
|
|
|
clear_commit_weight(&commit_weight);
|
2009-03-26 04:55:24 +00:00
|
|
|
}
|
|
|
|
|
2015-05-25 18:38:31 +00:00
|
|
|
static int register_ref(const char *refname, const struct object_id *oid,
|
2022-08-25 17:09:48 +00:00
|
|
|
int flags UNUSED, void *cb_data UNUSED)
|
2009-03-26 04:55:54 +00:00
|
|
|
{
|
2015-06-29 15:40:29 +00:00
|
|
|
struct strbuf good_prefix = STRBUF_INIT;
|
|
|
|
strbuf_addstr(&good_prefix, term_good);
|
|
|
|
strbuf_addstr(&good_prefix, "-");
|
|
|
|
|
|
|
|
if (!strcmp(refname, term_bad)) {
|
2015-03-13 23:39:29 +00:00
|
|
|
current_bad_oid = xmalloc(sizeof(*current_bad_oid));
|
2015-05-25 18:38:31 +00:00
|
|
|
oidcpy(current_bad_oid, oid);
|
2015-06-29 15:40:29 +00:00
|
|
|
} else if (starts_with(refname, good_prefix.buf)) {
|
2017-03-31 01:40:00 +00:00
|
|
|
oid_array_append(&good_revs, oid);
|
2013-11-30 20:55:40 +00:00
|
|
|
} else if (starts_with(refname, "skip-")) {
|
2017-03-31 01:40:00 +00:00
|
|
|
oid_array_append(&skipped_revs, oid);
|
2009-03-26 04:55:54 +00:00
|
|
|
}
|
|
|
|
|
2015-06-29 15:40:29 +00:00
|
|
|
strbuf_release(&good_prefix);
|
|
|
|
|
2009-03-26 04:55:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int read_bisect_refs(void)
|
|
|
|
{
|
2015-05-25 18:38:31 +00:00
|
|
|
return for_each_ref_in("refs/bisect/", register_ref, NULL);
|
2009-03-26 04:55:54 +00:00
|
|
|
}
|
|
|
|
|
memoize common git-path "constant" files
One of the most common uses of git_path() is to pass a
constant, like git_path("MERGE_MSG"). This has two
drawbacks:
1. The return value is a static buffer, and the lifetime
is dependent on other calls to git_path, etc.
2. There's no compile-time checking of the pathname. This
is OK for a one-off (after all, we have to spell it
correctly at least once), but many of these constant
strings appear throughout the code.
This patch introduces a series of functions to "memoize"
these strings, which are essentially globals for the
lifetime of the program. We compute the value once, take
ownership of the buffer, and return the cached value for
subsequent calls. cache.h provides a helper macro for
defining these functions as one-liners, and defines a few
common ones for global use.
Using a macro is a little bit gross, but it does nicely
document the purpose of the functions. If we need to touch
them all later (e.g., because we learned how to change the
git_dir variable at runtime, and need to invalidate all of
the stored values), it will be much easier to have the
complete list.
Note that the shared-global functions have separate, manual
declarations. We could do something clever with the macros
(e.g., expand it to a declaration in some places, and a
declaration _and_ a definition in path.c). But there aren't
that many, and it's probably better to stay away from
too-magical macros.
Likewise, if we abandon the C preprocessor in favor of
generating these with a script, we could get much fancier.
E.g., normalizing "FOO/BAR-BAZ" into "git_path_foo_bar_baz".
But the small amount of saved typing is probably not worth
the resulting confusion to readers who want to grep for the
function's definition.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2015-08-10 09:38:57 +00:00
|
|
|
static GIT_PATH_FUNC(git_path_bisect_names, "BISECT_NAMES")
|
|
|
|
static GIT_PATH_FUNC(git_path_bisect_expected_rev, "BISECT_EXPECTED_REV")
|
2017-09-29 06:49:39 +00:00
|
|
|
static GIT_PATH_FUNC(git_path_bisect_ancestors_ok, "BISECT_ANCESTORS_OK")
|
|
|
|
static GIT_PATH_FUNC(git_path_bisect_run, "BISECT_RUN")
|
|
|
|
static GIT_PATH_FUNC(git_path_bisect_start, "BISECT_START")
|
|
|
|
static GIT_PATH_FUNC(git_path_bisect_log, "BISECT_LOG")
|
2017-04-20 21:08:25 +00:00
|
|
|
static GIT_PATH_FUNC(git_path_bisect_terms, "BISECT_TERMS")
|
2020-08-07 21:58:37 +00:00
|
|
|
static GIT_PATH_FUNC(git_path_bisect_first_parent, "BISECT_FIRST_PARENT")
|
2017-09-29 06:49:39 +00:00
|
|
|
static GIT_PATH_FUNC(git_path_head_name, "head-name")
|
memoize common git-path "constant" files
One of the most common uses of git_path() is to pass a
constant, like git_path("MERGE_MSG"). This has two
drawbacks:
1. The return value is a static buffer, and the lifetime
is dependent on other calls to git_path, etc.
2. There's no compile-time checking of the pathname. This
is OK for a one-off (after all, we have to spell it
correctly at least once), but many of these constant
strings appear throughout the code.
This patch introduces a series of functions to "memoize"
these strings, which are essentially globals for the
lifetime of the program. We compute the value once, take
ownership of the buffer, and return the cached value for
subsequent calls. cache.h provides a helper macro for
defining these functions as one-liners, and defines a few
common ones for global use.
Using a macro is a little bit gross, but it does nicely
document the purpose of the functions. If we need to touch
them all later (e.g., because we learned how to change the
git_dir variable at runtime, and need to invalidate all of
the stored values), it will be much easier to have the
complete list.
Note that the shared-global functions have separate, manual
declarations. We could do something clever with the macros
(e.g., expand it to a declaration in some places, and a
declaration _and_ a definition in path.c). But there aren't
that many, and it's probably better to stay away from
too-magical macros.
Likewise, if we abandon the C preprocessor in favor of
generating these with a script, we could get much fancier.
E.g., normalizing "FOO/BAR-BAZ" into "git_path_foo_bar_baz".
But the small amount of saved typing is probably not worth
the resulting confusion to readers who want to grep for the
function's definition.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2015-08-10 09:38:57 +00:00
|
|
|
|
2020-07-28 20:24:53 +00:00
|
|
|
static void read_bisect_paths(struct strvec *array)
|
2009-03-26 04:55:59 +00:00
|
|
|
{
|
|
|
|
struct strbuf str = STRBUF_INIT;
|
memoize common git-path "constant" files
One of the most common uses of git_path() is to pass a
constant, like git_path("MERGE_MSG"). This has two
drawbacks:
1. The return value is a static buffer, and the lifetime
is dependent on other calls to git_path, etc.
2. There's no compile-time checking of the pathname. This
is OK for a one-off (after all, we have to spell it
correctly at least once), but many of these constant
strings appear throughout the code.
This patch introduces a series of functions to "memoize"
these strings, which are essentially globals for the
lifetime of the program. We compute the value once, take
ownership of the buffer, and return the cached value for
subsequent calls. cache.h provides a helper macro for
defining these functions as one-liners, and defines a few
common ones for global use.
Using a macro is a little bit gross, but it does nicely
document the purpose of the functions. If we need to touch
them all later (e.g., because we learned how to change the
git_dir variable at runtime, and need to invalidate all of
the stored values), it will be much easier to have the
complete list.
Note that the shared-global functions have separate, manual
declarations. We could do something clever with the macros
(e.g., expand it to a declaration in some places, and a
declaration _and_ a definition in path.c). But there aren't
that many, and it's probably better to stay away from
too-magical macros.
Likewise, if we abandon the C preprocessor in favor of
generating these with a script, we could get much fancier.
E.g., normalizing "FOO/BAR-BAZ" into "git_path_foo_bar_baz".
But the small amount of saved typing is probably not worth
the resulting confusion to readers who want to grep for the
function's definition.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2015-08-10 09:38:57 +00:00
|
|
|
const char *filename = git_path_bisect_names();
|
2017-05-03 10:16:46 +00:00
|
|
|
FILE *fp = xfopen(filename, "r");
|
2009-03-26 04:55:59 +00:00
|
|
|
|
2016-01-13 23:31:17 +00:00
|
|
|
while (strbuf_getline_lf(&str, fp) != EOF) {
|
2009-03-26 04:55:59 +00:00
|
|
|
strbuf_trim(&str);
|
2020-07-28 20:24:02 +00:00
|
|
|
if (sq_dequote_to_strvec(str.buf, array))
|
2016-06-17 20:21:12 +00:00
|
|
|
die(_("Badly quoted content in file '%s': %s"),
|
2011-09-13 21:58:14 +00:00
|
|
|
filename, str.buf);
|
2009-03-26 04:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
strbuf_release(&str);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
|
2020-03-30 14:04:06 +00:00
|
|
|
static char *join_oid_array_hex(struct oid_array *array, char delim)
|
2009-05-09 15:55:45 +00:00
|
|
|
{
|
|
|
|
struct strbuf joined_hexs = STRBUF_INIT;
|
|
|
|
int i;
|
|
|
|
|
2011-05-19 21:34:33 +00:00
|
|
|
for (i = 0; i < array->nr; i++) {
|
2017-03-26 16:01:37 +00:00
|
|
|
strbuf_addstr(&joined_hexs, oid_to_hex(array->oid + i));
|
2011-05-19 21:34:33 +00:00
|
|
|
if (i + 1 < array->nr)
|
2009-05-09 15:55:45 +00:00
|
|
|
strbuf_addch(&joined_hexs, delim);
|
|
|
|
}
|
|
|
|
|
|
|
|
return strbuf_detach(&joined_hexs, NULL);
|
|
|
|
}
|
|
|
|
|
2009-06-06 04:41:33 +00:00
|
|
|
/*
|
|
|
|
* In this function, passing a not NULL skipped_first is very special.
|
|
|
|
* It means that we want to know if the first commit in the list is
|
|
|
|
* skipped because we will want to test a commit away from it if it is
|
|
|
|
* indeed skipped.
|
|
|
|
* So if the first commit is skipped, we cannot take the shortcut to
|
|
|
|
* just "return list" when we find the first non skipped commit, we
|
|
|
|
* have to return a fully filtered list.
|
|
|
|
*
|
|
|
|
* We use (*skipped_first == -1) to mean "it has been found that the
|
|
|
|
* first commit is not skipped". In this case *skipped_first is set back
|
|
|
|
* to 0 just before the function returns.
|
|
|
|
*/
|
2009-03-26 04:55:49 +00:00
|
|
|
struct commit_list *filter_skipped(struct commit_list *list,
|
|
|
|
struct commit_list **tried,
|
2009-06-06 04:41:33 +00:00
|
|
|
int show_all,
|
|
|
|
int *count,
|
|
|
|
int *skipped_first)
|
2009-03-26 04:55:49 +00:00
|
|
|
{
|
|
|
|
struct commit_list *filtered = NULL, **f = &filtered;
|
|
|
|
|
|
|
|
*tried = NULL;
|
|
|
|
|
2009-06-06 04:41:33 +00:00
|
|
|
if (skipped_first)
|
|
|
|
*skipped_first = 0;
|
|
|
|
if (count)
|
|
|
|
*count = 0;
|
|
|
|
|
2011-05-19 21:34:33 +00:00
|
|
|
if (!skipped_revs.nr)
|
2009-03-26 04:55:49 +00:00
|
|
|
return list;
|
|
|
|
|
|
|
|
while (list) {
|
|
|
|
struct commit_list *next = list->next;
|
|
|
|
list->next = NULL;
|
2017-03-31 01:40:00 +00:00
|
|
|
if (0 <= oid_array_lookup(&skipped_revs, &list->item->object.oid)) {
|
2009-06-06 04:41:33 +00:00
|
|
|
if (skipped_first && !*skipped_first)
|
|
|
|
*skipped_first = 1;
|
2009-03-26 04:55:49 +00:00
|
|
|
/* Move current to tried list */
|
|
|
|
*tried = list;
|
|
|
|
tried = &list->next;
|
|
|
|
} else {
|
2009-06-06 04:41:33 +00:00
|
|
|
if (!show_all) {
|
|
|
|
if (!skipped_first || !*skipped_first)
|
|
|
|
return list;
|
|
|
|
} else if (skipped_first && !*skipped_first) {
|
|
|
|
/* This means we know it's not skipped */
|
|
|
|
*skipped_first = -1;
|
|
|
|
}
|
2009-03-26 04:55:49 +00:00
|
|
|
/* Move current to filtered list */
|
|
|
|
*f = list;
|
|
|
|
f = &list->next;
|
2009-06-06 04:41:33 +00:00
|
|
|
if (count)
|
|
|
|
(*count)++;
|
2009-03-26 04:55:49 +00:00
|
|
|
}
|
|
|
|
list = next;
|
|
|
|
}
|
|
|
|
|
2009-06-06 04:41:33 +00:00
|
|
|
if (skipped_first && *skipped_first == -1)
|
|
|
|
*skipped_first = 0;
|
|
|
|
|
2009-03-26 04:55:49 +00:00
|
|
|
return filtered;
|
|
|
|
}
|
2009-03-26 04:55:54 +00:00
|
|
|
|
2009-06-13 05:21:06 +00:00
|
|
|
#define PRN_MODULO 32768
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a pseudo random number generator based on "man 3 rand".
|
|
|
|
* It is not used properly because the seed is the argument and it
|
|
|
|
* is increased by one between each call, but that should not matter
|
|
|
|
* for this application.
|
|
|
|
*/
|
2018-12-09 10:25:21 +00:00
|
|
|
static unsigned get_prn(unsigned count)
|
|
|
|
{
|
2009-06-13 05:21:06 +00:00
|
|
|
count = count * 1103515245 + 12345;
|
2013-04-03 19:17:55 +00:00
|
|
|
return (count/65536) % PRN_MODULO;
|
2009-06-13 05:21:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Custom integer square root from
|
2017-05-13 09:54:51 +00:00
|
|
|
* https://en.wikipedia.org/wiki/Integer_square_root
|
2009-06-13 05:21:06 +00:00
|
|
|
*/
|
|
|
|
static int sqrti(int val)
|
|
|
|
{
|
|
|
|
float d, x = val;
|
|
|
|
|
2020-02-17 08:40:30 +00:00
|
|
|
if (!val)
|
2009-06-13 05:21:06 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
float y = (x + (float)val / x) / 2;
|
|
|
|
d = (y > x) ? y - x : x - y;
|
|
|
|
x = y;
|
|
|
|
} while (d >= 0.5);
|
|
|
|
|
|
|
|
return (int)x;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct commit_list *skip_away(struct commit_list *list, int count)
|
2009-06-06 04:41:34 +00:00
|
|
|
{
|
|
|
|
struct commit_list *cur, *previous;
|
2009-06-13 05:21:06 +00:00
|
|
|
int prn, index, i;
|
|
|
|
|
|
|
|
prn = get_prn(count);
|
|
|
|
index = (count * prn / PRN_MODULO) * sqrti(prn) / sqrti(PRN_MODULO);
|
2009-06-06 04:41:34 +00:00
|
|
|
|
|
|
|
cur = list;
|
|
|
|
previous = NULL;
|
|
|
|
|
|
|
|
for (i = 0; cur; cur = cur->next, i++) {
|
|
|
|
if (i == index) {
|
2018-08-28 21:22:48 +00:00
|
|
|
if (!oideq(&cur->item->object.oid, current_bad_oid))
|
2009-06-06 04:41:34 +00:00
|
|
|
return cur;
|
|
|
|
if (previous)
|
|
|
|
return previous;
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
previous = cur;
|
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct commit_list *managed_skipped(struct commit_list *list,
|
|
|
|
struct commit_list **tried)
|
|
|
|
{
|
|
|
|
int count, skipped_first;
|
|
|
|
|
|
|
|
*tried = NULL;
|
|
|
|
|
2011-05-19 21:34:33 +00:00
|
|
|
if (!skipped_revs.nr)
|
2009-06-06 04:41:34 +00:00
|
|
|
return list;
|
|
|
|
|
|
|
|
list = filter_skipped(list, tried, 0, &count, &skipped_first);
|
|
|
|
|
|
|
|
if (!skipped_first)
|
|
|
|
return list;
|
|
|
|
|
2009-06-13 05:21:06 +00:00
|
|
|
return skip_away(list, count);
|
2009-06-06 04:41:34 +00:00
|
|
|
}
|
|
|
|
|
2018-11-10 05:48:59 +00:00
|
|
|
static void bisect_rev_setup(struct repository *r, struct rev_info *revs,
|
2022-08-02 15:33:15 +00:00
|
|
|
struct strvec *rev_argv,
|
2018-11-10 05:48:59 +00:00
|
|
|
const char *prefix,
|
2009-05-17 15:36:44 +00:00
|
|
|
const char *bad_format, const char *good_format,
|
|
|
|
int read_paths)
|
2009-03-26 04:55:54 +00:00
|
|
|
{
|
2022-08-02 15:33:16 +00:00
|
|
|
struct setup_revision_opt opt = {
|
|
|
|
.free_removed_argv_elements = 1,
|
|
|
|
};
|
2009-05-09 15:55:40 +00:00
|
|
|
int i;
|
|
|
|
|
2018-11-10 05:48:59 +00:00
|
|
|
repo_init_revisions(r, revs, prefix);
|
2009-03-26 04:55:59 +00:00
|
|
|
revs->abbrev = 0;
|
|
|
|
revs->commit_format = CMIT_FMT_UNSPECIFIED;
|
2009-03-26 04:55:54 +00:00
|
|
|
|
2009-05-09 15:55:41 +00:00
|
|
|
/* rev_argv.argv[0] will be ignored by setup_revisions */
|
2022-08-02 15:33:15 +00:00
|
|
|
strvec_push(rev_argv, "bisect_rev_setup");
|
|
|
|
strvec_pushf(rev_argv, bad_format, oid_to_hex(current_bad_oid));
|
2011-05-19 21:34:33 +00:00
|
|
|
for (i = 0; i < good_revs.nr; i++)
|
2022-08-02 15:33:15 +00:00
|
|
|
strvec_pushf(rev_argv, good_format,
|
strvec: fix indentation in renamed calls
Code which split an argv_array call across multiple lines, like:
argv_array_pushl(&args, "one argument",
"another argument", "and more",
NULL);
was recently mechanically renamed to use strvec, which results in
mis-matched indentation like:
strvec_pushl(&args, "one argument",
"another argument", "and more",
NULL);
Let's fix these up to align the arguments with the opening paren. I did
this manually by sifting through the results of:
git jump grep 'strvec_.*,$'
and liberally applying my editor's auto-format. Most of the changes are
of the form shown above, though I also normalized a few that had
originally used a single-tab indentation (rather than our usual style of
aligning with the open paren). I also rewrapped a couple of obvious
cases (e.g., where previously too-long lines became short enough to fit
on one), but I wasn't aggressive about it. In cases broken to three or
more lines, the grouping of arguments is sometimes meaningful, and it
wasn't worth my time or reviewer time to ponder each case individually.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-07-28 20:26:31 +00:00
|
|
|
oid_to_hex(good_revs.oid + i));
|
2022-08-02 15:33:15 +00:00
|
|
|
strvec_push(rev_argv, "--");
|
2009-05-17 15:36:44 +00:00
|
|
|
if (read_paths)
|
2022-08-02 15:33:15 +00:00
|
|
|
read_bisect_paths(rev_argv);
|
2009-03-26 04:55:59 +00:00
|
|
|
|
2022-08-02 15:33:16 +00:00
|
|
|
setup_revisions(rev_argv->nr, rev_argv->v, revs, &opt);
|
2009-03-26 04:55:59 +00:00
|
|
|
}
|
|
|
|
|
2009-05-17 15:36:44 +00:00
|
|
|
static void bisect_common(struct rev_info *revs)
|
2009-04-19 09:55:57 +00:00
|
|
|
{
|
|
|
|
if (prepare_revision_walk(revs))
|
|
|
|
die("revision walk setup failed");
|
|
|
|
if (revs->tree_objects)
|
2019-01-16 18:25:58 +00:00
|
|
|
mark_edges_uninteresting(revs, NULL, 0);
|
2009-04-19 09:55:57 +00:00
|
|
|
}
|
|
|
|
|
2020-02-17 08:40:34 +00:00
|
|
|
static enum bisect_error error_if_skipped_commits(struct commit_list *tried,
|
2015-03-13 23:39:29 +00:00
|
|
|
const struct object_id *bad)
|
2009-04-19 09:56:07 +00:00
|
|
|
{
|
|
|
|
if (!tried)
|
2020-02-17 08:40:34 +00:00
|
|
|
return BISECT_OK;
|
2009-04-19 09:56:07 +00:00
|
|
|
|
|
|
|
printf("There are only 'skip'ped commits left to test.\n"
|
2015-06-29 15:40:29 +00:00
|
|
|
"The first %s commit could be any of:\n", term_bad);
|
2016-07-08 17:09:28 +00:00
|
|
|
|
|
|
|
for ( ; tried; tried = tried->next)
|
|
|
|
printf("%s\n", oid_to_hex(&tried->item->object.oid));
|
|
|
|
|
2009-04-19 09:56:07 +00:00
|
|
|
if (bad)
|
2015-03-13 23:39:29 +00:00
|
|
|
printf("%s\n", oid_to_hex(bad));
|
2016-06-17 20:21:12 +00:00
|
|
|
printf(_("We cannot bisect more!\n"));
|
2020-02-17 08:40:34 +00:00
|
|
|
|
|
|
|
return BISECT_ONLY_SKIPPED_LEFT;
|
2009-04-19 09:56:07 +00:00
|
|
|
}
|
|
|
|
|
2015-03-13 23:39:29 +00:00
|
|
|
static int is_expected_rev(const struct object_id *oid)
|
2009-05-09 15:55:45 +00:00
|
|
|
{
|
memoize common git-path "constant" files
One of the most common uses of git_path() is to pass a
constant, like git_path("MERGE_MSG"). This has two
drawbacks:
1. The return value is a static buffer, and the lifetime
is dependent on other calls to git_path, etc.
2. There's no compile-time checking of the pathname. This
is OK for a one-off (after all, we have to spell it
correctly at least once), but many of these constant
strings appear throughout the code.
This patch introduces a series of functions to "memoize"
these strings, which are essentially globals for the
lifetime of the program. We compute the value once, take
ownership of the buffer, and return the cached value for
subsequent calls. cache.h provides a helper macro for
defining these functions as one-liners, and defines a few
common ones for global use.
Using a macro is a little bit gross, but it does nicely
document the purpose of the functions. If we need to touch
them all later (e.g., because we learned how to change the
git_dir variable at runtime, and need to invalidate all of
the stored values), it will be much easier to have the
complete list.
Note that the shared-global functions have separate, manual
declarations. We could do something clever with the macros
(e.g., expand it to a declaration in some places, and a
declaration _and_ a definition in path.c). But there aren't
that many, and it's probably better to stay away from
too-magical macros.
Likewise, if we abandon the C preprocessor in favor of
generating these with a script, we could get much fancier.
E.g., normalizing "FOO/BAR-BAZ" into "git_path_foo_bar_baz".
But the small amount of saved typing is probably not worth
the resulting confusion to readers who want to grep for the
function's definition.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2015-08-10 09:38:57 +00:00
|
|
|
const char *filename = git_path_bisect_expected_rev();
|
2009-05-09 15:55:45 +00:00
|
|
|
struct stat st;
|
|
|
|
struct strbuf str = STRBUF_INIT;
|
|
|
|
FILE *fp;
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
if (stat(filename, &st) || !S_ISREG(st.st_mode))
|
|
|
|
return 0;
|
|
|
|
|
2017-05-03 10:16:50 +00:00
|
|
|
fp = fopen_or_warn(filename, "r");
|
2009-05-09 15:55:45 +00:00
|
|
|
if (!fp)
|
|
|
|
return 0;
|
|
|
|
|
2016-01-13 23:31:17 +00:00
|
|
|
if (strbuf_getline_lf(&str, fp) != EOF)
|
2015-03-13 23:39:29 +00:00
|
|
|
res = !strcmp(str.buf, oid_to_hex(oid));
|
2009-05-09 15:55:45 +00:00
|
|
|
|
|
|
|
strbuf_release(&str);
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
bisect--helper: double-check run command on exit code 126 and 127
When a run command cannot be executed or found, shells return exit code
126 or 127, respectively. Valid run commands are allowed to return
these codes as well to indicate bad revisions, though, for historical
reasons. This means typos can cause bogus bisect runs that go over the
full distance and end up reporting invalid results.
The best solution would be to reserve exit codes 126 and 127, like
71b0251cdd (Bisect run: "skip" current commit if script exit code is
125., 2007-10-26) did for 125, and abort bisect run when we get them.
That might be inconvenient for those who relied on the documentation
stating that 126 and 127 can be used for bad revisions, though.
The workaround used by this patch is to run the command on a known-good
revision and abort if we still get the same error code. This adds one
step to runs with scripts that use exit codes 126 and 127, but keeps
them supported, with one exception: It won't work with commands that
cannot recognize the (manually marked) known-good revision as such.
Run commands that use low exit codes are unaffected. Typos are reported
after executing the missing command twice and three checkouts (the first
step, the known good revision and back to the revision of the first
step).
Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2022-01-18 12:46:32 +00:00
|
|
|
enum bisect_error bisect_checkout(const struct object_id *bisect_rev,
|
|
|
|
int no_checkout)
|
2009-04-19 09:56:07 +00:00
|
|
|
{
|
2021-07-27 18:22:18 +00:00
|
|
|
struct commit *commit;
|
|
|
|
struct pretty_print_context pp = {0};
|
|
|
|
struct strbuf commit_msg = STRBUF_INIT;
|
2009-04-19 09:56:07 +00:00
|
|
|
|
2017-10-15 22:06:51 +00:00
|
|
|
update_ref(NULL, "BISECT_EXPECTED_REV", bisect_rev, NULL, 0, UPDATE_REFS_DIE_ON_ERR);
|
2009-04-19 09:56:07 +00:00
|
|
|
|
2011-08-04 12:01:00 +00:00
|
|
|
if (no_checkout) {
|
2017-10-15 22:06:51 +00:00
|
|
|
update_ref(NULL, "BISECT_HEAD", bisect_rev, NULL, 0,
|
|
|
|
UPDATE_REFS_DIE_ON_ERR);
|
2011-08-04 12:01:00 +00:00
|
|
|
} else {
|
2022-10-30 11:55:06 +00:00
|
|
|
struct child_process cmd = CHILD_PROCESS_INIT;
|
2022-10-30 11:47:02 +00:00
|
|
|
|
2022-10-30 11:55:06 +00:00
|
|
|
cmd.git_cmd = 1;
|
|
|
|
strvec_pushl(&cmd.args, "checkout", "-q",
|
|
|
|
oid_to_hex(bisect_rev), "--", NULL);
|
|
|
|
if (run_command(&cmd))
|
2020-02-17 08:40:35 +00:00
|
|
|
/*
|
|
|
|
* Errors in `run_command()` itself, signaled by res < 0,
|
|
|
|
* and errors in the child process, signaled by res > 0
|
2021-07-28 17:07:02 +00:00
|
|
|
* can both be treated as regular BISECT_FAILED (-1).
|
2020-02-17 08:40:35 +00:00
|
|
|
*/
|
2021-07-28 17:07:02 +00:00
|
|
|
return BISECT_FAILED;
|
2011-08-04 12:01:00 +00:00
|
|
|
}
|
2009-04-19 09:56:07 +00:00
|
|
|
|
2021-07-27 18:22:18 +00:00
|
|
|
commit = lookup_commit_reference(the_repository, bisect_rev);
|
|
|
|
format_commit_message(commit, "[%H] %s%n", &commit_msg, &pp);
|
|
|
|
fputs(commit_msg.buf, stdout);
|
|
|
|
strbuf_release(&commit_msg);
|
|
|
|
|
2021-07-28 17:07:02 +00:00
|
|
|
return BISECT_OK;
|
2009-04-19 09:56:07 +00:00
|
|
|
}
|
|
|
|
|
2018-11-10 05:48:59 +00:00
|
|
|
static struct commit *get_commit_reference(struct repository *r,
|
|
|
|
const struct object_id *oid)
|
2009-05-09 15:55:45 +00:00
|
|
|
{
|
2018-11-10 05:48:59 +00:00
|
|
|
struct commit *c = lookup_commit_reference(r, oid);
|
|
|
|
if (!c)
|
2017-03-26 16:01:37 +00:00
|
|
|
die(_("Not a valid commit name %s"), oid_to_hex(oid));
|
2018-11-10 05:48:59 +00:00
|
|
|
return c;
|
2009-05-09 15:55:45 +00:00
|
|
|
}
|
|
|
|
|
2018-11-10 05:48:59 +00:00
|
|
|
static struct commit **get_bad_and_good_commits(struct repository *r,
|
|
|
|
int *rev_nr)
|
2009-05-09 15:55:45 +00:00
|
|
|
{
|
2016-02-22 22:44:25 +00:00
|
|
|
struct commit **rev;
|
2009-05-09 15:55:45 +00:00
|
|
|
int i, n = 0;
|
|
|
|
|
2016-02-22 22:44:25 +00:00
|
|
|
ALLOC_ARRAY(rev, 1 + good_revs.nr);
|
2018-11-10 05:48:59 +00:00
|
|
|
rev[n++] = get_commit_reference(r, current_bad_oid);
|
2011-05-19 21:34:33 +00:00
|
|
|
for (i = 0; i < good_revs.nr; i++)
|
2018-11-10 05:48:59 +00:00
|
|
|
rev[n++] = get_commit_reference(r, good_revs.oid + i);
|
2009-05-09 15:55:45 +00:00
|
|
|
*rev_nr = n;
|
|
|
|
|
|
|
|
return rev;
|
|
|
|
}
|
|
|
|
|
2020-02-17 08:40:38 +00:00
|
|
|
static enum bisect_error handle_bad_merge_base(void)
|
2009-05-09 15:55:45 +00:00
|
|
|
{
|
2015-03-13 23:39:29 +00:00
|
|
|
if (is_expected_rev(current_bad_oid)) {
|
|
|
|
char *bad_hex = oid_to_hex(current_bad_oid);
|
2020-03-30 14:04:06 +00:00
|
|
|
char *good_hex = join_oid_array_hex(&good_revs, ' ');
|
2015-06-29 15:40:29 +00:00
|
|
|
if (!strcmp(term_bad, "bad") && !strcmp(term_good, "good")) {
|
2016-06-17 20:21:12 +00:00
|
|
|
fprintf(stderr, _("The merge base %s is bad.\n"
|
2015-06-29 15:40:29 +00:00
|
|
|
"This means the bug has been fixed "
|
2016-06-17 20:21:12 +00:00
|
|
|
"between %s and [%s].\n"),
|
2015-06-29 15:40:29 +00:00
|
|
|
bad_hex, bad_hex, good_hex);
|
2015-06-29 15:40:33 +00:00
|
|
|
} else if (!strcmp(term_bad, "new") && !strcmp(term_good, "old")) {
|
2016-06-17 20:21:12 +00:00
|
|
|
fprintf(stderr, _("The merge base %s is new.\n"
|
2015-06-29 15:40:33 +00:00
|
|
|
"The property has changed "
|
2016-06-17 20:21:12 +00:00
|
|
|
"between %s and [%s].\n"),
|
2015-06-29 15:40:33 +00:00
|
|
|
bad_hex, bad_hex, good_hex);
|
2015-06-29 15:40:29 +00:00
|
|
|
} else {
|
2016-06-17 20:21:12 +00:00
|
|
|
fprintf(stderr, _("The merge base %s is %s.\n"
|
2015-06-29 15:40:29 +00:00
|
|
|
"This means the first '%s' commit is "
|
2016-06-17 20:21:12 +00:00
|
|
|
"between %s and [%s].\n"),
|
2015-06-29 15:40:29 +00:00
|
|
|
bad_hex, term_bad, term_good, bad_hex, good_hex);
|
|
|
|
}
|
2020-02-17 08:40:38 +00:00
|
|
|
return BISECT_MERGE_BASE_CHECK;
|
2009-05-09 15:55:45 +00:00
|
|
|
}
|
|
|
|
|
2016-12-04 22:04:23 +00:00
|
|
|
fprintf(stderr, _("Some %s revs are not ancestors of the %s rev.\n"
|
2009-05-09 15:55:45 +00:00
|
|
|
"git bisect cannot work properly in this case.\n"
|
2016-06-17 20:21:12 +00:00
|
|
|
"Maybe you mistook %s and %s revs?\n"),
|
2015-06-29 15:40:29 +00:00
|
|
|
term_good, term_bad, term_good, term_bad);
|
2020-02-17 08:40:38 +00:00
|
|
|
return BISECT_FAILED;
|
2009-05-09 15:55:45 +00:00
|
|
|
}
|
|
|
|
|
2017-03-31 01:39:57 +00:00
|
|
|
static void handle_skipped_merge_base(const struct object_id *mb)
|
2009-05-09 15:55:45 +00:00
|
|
|
{
|
2017-03-31 01:39:57 +00:00
|
|
|
char *mb_hex = oid_to_hex(mb);
|
2016-06-24 23:09:22 +00:00
|
|
|
char *bad_hex = oid_to_hex(current_bad_oid);
|
2020-03-30 14:04:06 +00:00
|
|
|
char *good_hex = join_oid_array_hex(&good_revs, ' ');
|
2009-05-09 15:55:45 +00:00
|
|
|
|
2016-06-17 20:21:12 +00:00
|
|
|
warning(_("the merge base between %s and [%s] "
|
2009-05-09 15:55:45 +00:00
|
|
|
"must be skipped.\n"
|
2015-06-29 15:40:29 +00:00
|
|
|
"So we cannot be sure the first %s commit is "
|
2009-05-09 15:55:45 +00:00
|
|
|
"between %s and %s.\n"
|
2016-06-17 20:21:12 +00:00
|
|
|
"We continue anyway."),
|
2015-06-29 15:40:29 +00:00
|
|
|
bad_hex, good_hex, term_bad, mb_hex, bad_hex);
|
2009-05-09 15:55:45 +00:00
|
|
|
free(good_hex);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-06-29 15:40:33 +00:00
|
|
|
* "check_merge_bases" checks that merge bases are not "bad" (or "new").
|
2009-05-09 15:55:45 +00:00
|
|
|
*
|
2015-06-29 15:40:33 +00:00
|
|
|
* - If one is "bad" (or "new"), it means the user assumed something wrong
|
2020-02-17 08:40:36 +00:00
|
|
|
* and we must return error with a non 0 error code.
|
2015-06-29 15:40:33 +00:00
|
|
|
* - If one is "good" (or "old"), that's good, we have nothing to do.
|
2009-05-09 15:55:45 +00:00
|
|
|
* - If one is "skipped", we can't know but we should warn.
|
|
|
|
* - If we don't know, we should check it out and ask the user to test.
|
2020-02-17 08:40:36 +00:00
|
|
|
* - If a merge base must be tested, on success return
|
|
|
|
* BISECT_INTERNAL_SUCCESS_MERGE_BASE (-11) a special condition
|
|
|
|
* for early success, this will be converted back to 0 in
|
|
|
|
* check_good_are_ancestors_of_bad().
|
2009-05-09 15:55:45 +00:00
|
|
|
*/
|
2020-02-17 08:40:36 +00:00
|
|
|
static enum bisect_error check_merge_bases(int rev_nr, struct commit **rev, int no_checkout)
|
2009-05-09 15:55:45 +00:00
|
|
|
{
|
2020-02-17 08:40:36 +00:00
|
|
|
enum bisect_error res = BISECT_OK;
|
2009-05-09 15:55:45 +00:00
|
|
|
struct commit_list *result;
|
|
|
|
|
2014-10-30 19:20:44 +00:00
|
|
|
result = get_merge_bases_many(rev[0], rev_nr - 1, rev + 1);
|
2009-05-09 15:55:45 +00:00
|
|
|
|
|
|
|
for (; result; result = result->next) {
|
2017-03-31 01:39:57 +00:00
|
|
|
const struct object_id *mb = &result->item->object.oid;
|
convert "oidcmp() == 0" to oideq()
Using the more restrictive oideq() should, in the long run,
give the compiler more opportunities to optimize these
callsites. For now, this conversion should be a complete
noop with respect to the generated code.
The result is also perhaps a little more readable, as it
avoids the "zero is equal" idiom. Since it's so prevalent in
C, I think seasoned programmers tend not to even notice it
anymore, but it can sometimes make for awkward double
negations (e.g., we can drop a few !!oidcmp() instances
here).
This patch was generated almost entirely by the included
coccinelle patch. This mechanical conversion should be
completely safe, because we check explicitly for cases where
oidcmp() is compared to 0, which is what oideq() is doing
under the hood. Note that we don't have to catch "!oidcmp()"
separately; coccinelle's standard isomorphisms make sure the
two are treated equivalently.
I say "almost" because I did hand-edit the coccinelle output
to fix up a few style violations (it mostly keeps the
original formatting, but sometimes unwraps long lines).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2018-08-28 21:22:40 +00:00
|
|
|
if (oideq(mb, current_bad_oid)) {
|
2020-02-17 08:40:38 +00:00
|
|
|
res = handle_bad_merge_base();
|
|
|
|
break;
|
2017-03-31 01:40:00 +00:00
|
|
|
} else if (0 <= oid_array_lookup(&good_revs, mb)) {
|
2009-05-09 15:55:45 +00:00
|
|
|
continue;
|
2017-03-31 01:40:00 +00:00
|
|
|
} else if (0 <= oid_array_lookup(&skipped_revs, mb)) {
|
2009-05-09 15:55:45 +00:00
|
|
|
handle_skipped_merge_base(mb);
|
|
|
|
} else {
|
2016-06-17 20:21:12 +00:00
|
|
|
printf(_("Bisecting: a merge base must be tested\n"));
|
2020-02-17 08:40:36 +00:00
|
|
|
res = bisect_checkout(mb, no_checkout);
|
|
|
|
if (!res)
|
|
|
|
/* indicate early success */
|
|
|
|
res = BISECT_INTERNAL_SUCCESS_MERGE_BASE;
|
|
|
|
break;
|
2009-05-09 15:55:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free_commit_list(result);
|
2020-02-17 08:40:36 +00:00
|
|
|
return res;
|
2009-05-09 15:55:45 +00:00
|
|
|
}
|
|
|
|
|
2018-11-10 05:48:59 +00:00
|
|
|
static int check_ancestors(struct repository *r, int rev_nr,
|
|
|
|
struct commit **rev, const char *prefix)
|
2009-05-09 15:55:46 +00:00
|
|
|
{
|
2022-08-02 15:33:15 +00:00
|
|
|
struct strvec rev_argv = STRVEC_INIT;
|
2009-05-17 15:36:46 +00:00
|
|
|
struct rev_info revs;
|
2011-10-01 16:16:08 +00:00
|
|
|
int res;
|
2009-05-09 15:55:46 +00:00
|
|
|
|
2022-08-02 15:33:15 +00:00
|
|
|
bisect_rev_setup(r, &revs, &rev_argv, prefix, "^%s", "%s", 0);
|
2009-05-09 15:55:46 +00:00
|
|
|
|
2009-05-17 15:36:46 +00:00
|
|
|
bisect_common(&revs);
|
|
|
|
res = (revs.commits != NULL);
|
|
|
|
|
|
|
|
/* Clean up objects used, as they will be reused. */
|
2017-12-25 17:45:36 +00:00
|
|
|
clear_commit_marks_many(rev_nr, rev, ALL_REV_FLAGS);
|
2009-05-09 15:55:46 +00:00
|
|
|
|
2022-04-13 20:01:36 +00:00
|
|
|
release_revisions(&revs);
|
2022-08-02 15:33:15 +00:00
|
|
|
strvec_clear(&rev_argv);
|
2009-05-17 15:36:46 +00:00
|
|
|
return res;
|
2009-05-09 15:55:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "check_good_are_ancestors_of_bad" checks that all "good" revs are
|
|
|
|
* ancestor of the "bad" rev.
|
|
|
|
*
|
|
|
|
* If that's not the case, we need to check the merge bases.
|
|
|
|
* If a merge base must be tested by the user, its source code will be
|
2020-02-17 08:40:37 +00:00
|
|
|
* checked out to be tested by the user and we will return.
|
2009-05-09 15:55:46 +00:00
|
|
|
*/
|
2020-02-17 08:40:37 +00:00
|
|
|
|
|
|
|
static enum bisect_error check_good_are_ancestors_of_bad(struct repository *r,
|
2018-11-10 05:48:59 +00:00
|
|
|
const char *prefix,
|
|
|
|
int no_checkout)
|
2009-05-09 15:55:46 +00:00
|
|
|
{
|
2020-02-17 08:40:37 +00:00
|
|
|
char *filename;
|
2009-05-09 15:55:46 +00:00
|
|
|
struct stat st;
|
2017-12-25 17:45:36 +00:00
|
|
|
int fd, rev_nr;
|
2020-02-17 08:40:36 +00:00
|
|
|
enum bisect_error res = BISECT_OK;
|
2017-12-25 17:45:36 +00:00
|
|
|
struct commit **rev;
|
2009-05-09 15:55:46 +00:00
|
|
|
|
2015-03-13 23:39:29 +00:00
|
|
|
if (!current_bad_oid)
|
2020-02-17 08:40:37 +00:00
|
|
|
return error(_("a %s revision is needed"), term_bad);
|
|
|
|
|
|
|
|
filename = git_pathdup("BISECT_ANCESTORS_OK");
|
2009-05-09 15:55:46 +00:00
|
|
|
|
|
|
|
/* Check if file BISECT_ANCESTORS_OK exists. */
|
|
|
|
if (!stat(filename, &st) && S_ISREG(st.st_mode))
|
2012-04-26 22:26:59 +00:00
|
|
|
goto done;
|
2009-05-09 15:55:46 +00:00
|
|
|
|
|
|
|
/* Bisecting with no good rev is ok. */
|
2020-02-17 08:40:30 +00:00
|
|
|
if (!good_revs.nr)
|
2012-04-26 22:26:59 +00:00
|
|
|
goto done;
|
2009-05-09 15:55:46 +00:00
|
|
|
|
2009-05-17 15:36:46 +00:00
|
|
|
/* Check if all good revs are ancestor of the bad rev. */
|
2020-02-17 08:40:36 +00:00
|
|
|
|
2018-11-10 05:48:59 +00:00
|
|
|
rev = get_bad_and_good_commits(r, &rev_nr);
|
|
|
|
if (check_ancestors(r, rev_nr, rev, prefix))
|
2020-02-17 08:40:36 +00:00
|
|
|
res = check_merge_bases(rev_nr, rev, no_checkout);
|
2017-12-25 17:45:36 +00:00
|
|
|
free(rev);
|
2009-05-09 15:55:46 +00:00
|
|
|
|
2020-02-17 08:40:37 +00:00
|
|
|
if (!res) {
|
|
|
|
/* Create file BISECT_ANCESTORS_OK. */
|
|
|
|
fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY, 0600);
|
|
|
|
if (fd < 0)
|
|
|
|
/*
|
|
|
|
* BISECT_ANCESTORS_OK file is not absolutely necessary,
|
|
|
|
* the bisection process will continue at the next
|
|
|
|
* bisection step.
|
|
|
|
* So, just signal with a warning that something
|
|
|
|
* might be wrong.
|
|
|
|
*/
|
|
|
|
warning_errno(_("could not create file '%s'"),
|
|
|
|
filename);
|
|
|
|
else
|
|
|
|
close(fd);
|
|
|
|
}
|
2012-04-26 22:26:59 +00:00
|
|
|
done:
|
|
|
|
free(filename);
|
2020-02-17 08:40:37 +00:00
|
|
|
return res;
|
2009-05-09 15:55:46 +00:00
|
|
|
}
|
|
|
|
|
2009-05-28 21:21:16 +00:00
|
|
|
/*
|
|
|
|
* This does "git diff-tree --pretty COMMIT" without one fork+exec.
|
|
|
|
*/
|
2018-11-10 05:48:59 +00:00
|
|
|
static void show_diff_tree(struct repository *r,
|
|
|
|
const char *prefix,
|
|
|
|
struct commit *commit)
|
2009-05-28 21:21:16 +00:00
|
|
|
{
|
2019-02-22 06:20:37 +00:00
|
|
|
const char *argv[] = {
|
bisect: make diff-tree output prettier
After completing a bisection, we print out the commit we found using an
internal version of diff-tree. The result is aesthetically lacking:
- it shows a raw diff, which is generally less informative for human
readers than "--stat --summary" (which we already decided was nice
for humans in format-patch's output).
- by not abbreviating hashes, the result is likely to wrap on most
people's terminals
- we don't use "-r", so if the commit touched files in a directory,
you only get to see the top-level directory mentioned
- we don't specify "--cc" or similar, so merges print nothing (not
even the commit message!)
Even though bisect might be driven by scripts, there's no reason to
consider this part of the output as machine-readable (if anything, the
initial "$hash is the first bad commit" might be parsed, but we won't
touch that here). Let's make it prettier and more informative for a
human reading the output.
While we're tweaking the options, let's also switch to using the diff
"ui" config. If we're accepting that this is human-readable output, then
we should respect the user's options for how to display it.
Note that we have to touch a few tests in t6030. These check bisection
in a corrupted repository (it's missing a subtree). They didn't fail
with the previous code, because it didn't actually recurse far enough in
the diff to find the broken tree. But now we'll see the corruption and
complain.
Adjusting the tests to expect the die() is the best fix. We still
confirm that we're able to bisect within the broken repo. And we'll
still print "$hash is the first bad commit" as usual before dying;
showing that is a reasonable outcome in a corrupt repository (and was
what might happen already, if the root tree was corrupt).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-02-22 06:23:28 +00:00
|
|
|
"diff-tree", "--pretty", "--stat", "--summary", "--cc", NULL
|
2019-02-22 06:20:37 +00:00
|
|
|
};
|
2009-05-28 21:21:16 +00:00
|
|
|
struct rev_info opt;
|
|
|
|
|
bisect: make diff-tree output prettier
After completing a bisection, we print out the commit we found using an
internal version of diff-tree. The result is aesthetically lacking:
- it shows a raw diff, which is generally less informative for human
readers than "--stat --summary" (which we already decided was nice
for humans in format-patch's output).
- by not abbreviating hashes, the result is likely to wrap on most
people's terminals
- we don't use "-r", so if the commit touched files in a directory,
you only get to see the top-level directory mentioned
- we don't specify "--cc" or similar, so merges print nothing (not
even the commit message!)
Even though bisect might be driven by scripts, there's no reason to
consider this part of the output as machine-readable (if anything, the
initial "$hash is the first bad commit" might be parsed, but we won't
touch that here). Let's make it prettier and more informative for a
human reading the output.
While we're tweaking the options, let's also switch to using the diff
"ui" config. If we're accepting that this is human-readable output, then
we should respect the user's options for how to display it.
Note that we have to touch a few tests in t6030. These check bisection
in a corrupted repository (it's missing a subtree). They didn't fail
with the previous code, because it didn't actually recurse far enough in
the diff to find the broken tree. But now we'll see the corruption and
complain.
Adjusting the tests to expect the die() is the best fix. We still
confirm that we're able to bisect within the broken repo. And we'll
still print "$hash is the first bad commit" as usual before dying;
showing that is a reasonable outcome in a corrupt repository (and was
what might happen already, if the root tree was corrupt).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-02-22 06:23:28 +00:00
|
|
|
git_config(git_diff_ui_config, NULL);
|
2019-02-22 06:21:33 +00:00
|
|
|
repo_init_revisions(r, &opt, prefix);
|
2009-05-28 21:21:16 +00:00
|
|
|
|
2019-02-22 06:20:37 +00:00
|
|
|
setup_revisions(ARRAY_SIZE(argv) - 1, argv, &opt, NULL);
|
2009-05-28 21:21:16 +00:00
|
|
|
log_tree_commit(&opt, commit);
|
2022-04-13 20:01:36 +00:00
|
|
|
release_revisions(&opt);
|
2009-05-28 21:21:16 +00:00
|
|
|
}
|
|
|
|
|
2015-06-29 15:40:30 +00:00
|
|
|
/*
|
|
|
|
* The terms used for this bisect session are stored in BISECT_TERMS.
|
|
|
|
* We read them and store them to adapt the messages accordingly.
|
|
|
|
* Default is bad/good.
|
|
|
|
*/
|
|
|
|
void read_bisect_terms(const char **read_bad, const char **read_good)
|
|
|
|
{
|
|
|
|
struct strbuf str = STRBUF_INIT;
|
2017-04-20 21:08:25 +00:00
|
|
|
const char *filename = git_path_bisect_terms();
|
2015-06-29 15:40:30 +00:00
|
|
|
FILE *fp = fopen(filename, "r");
|
|
|
|
|
|
|
|
if (!fp) {
|
|
|
|
if (errno == ENOENT) {
|
|
|
|
*read_bad = "bad";
|
|
|
|
*read_good = "good";
|
|
|
|
return;
|
|
|
|
} else {
|
2016-06-17 20:21:12 +00:00
|
|
|
die_errno(_("could not read file '%s'"), filename);
|
2015-06-29 15:40:30 +00:00
|
|
|
}
|
|
|
|
} else {
|
2016-01-13 23:31:17 +00:00
|
|
|
strbuf_getline_lf(&str, fp);
|
2015-06-29 15:40:30 +00:00
|
|
|
*read_bad = strbuf_detach(&str, NULL);
|
2016-01-13 23:31:17 +00:00
|
|
|
strbuf_getline_lf(&str, fp);
|
2015-06-29 15:40:30 +00:00
|
|
|
*read_good = strbuf_detach(&str, NULL);
|
|
|
|
}
|
|
|
|
strbuf_release(&str);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
|
2009-04-19 09:56:07 +00:00
|
|
|
/*
|
2020-02-17 08:40:39 +00:00
|
|
|
* We use the convention that return BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND (-10) means
|
2009-04-19 09:56:07 +00:00
|
|
|
* the bisection process finished successfully.
|
2020-02-17 08:40:39 +00:00
|
|
|
* In this case the calling function or command should not turn a
|
|
|
|
* BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND return code into an error or a non zero exit code.
|
2020-09-24 12:33:40 +00:00
|
|
|
*
|
|
|
|
* Checking BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND
|
|
|
|
* in bisect_helper::bisect_next() and only transforming it to 0 at
|
|
|
|
* the end of bisect_helper::cmd_bisect__helper() helps bypassing
|
|
|
|
* all the code related to finding a commit to test.
|
2009-04-19 09:56:07 +00:00
|
|
|
*/
|
2020-08-07 21:58:36 +00:00
|
|
|
enum bisect_error bisect_next_all(struct repository *r, const char *prefix)
|
2009-04-19 09:56:07 +00:00
|
|
|
{
|
2022-08-02 15:33:15 +00:00
|
|
|
struct strvec rev_argv = STRVEC_INIT;
|
2022-04-13 20:01:38 +00:00
|
|
|
struct rev_info revs = REV_INFO_INIT;
|
2009-04-19 09:56:07 +00:00
|
|
|
struct commit_list *tried;
|
2010-01-19 15:13:33 +00:00
|
|
|
int reaches = 0, all = 0, nr, steps;
|
2020-02-17 08:40:34 +00:00
|
|
|
enum bisect_error res = BISECT_OK;
|
2017-07-13 23:49:24 +00:00
|
|
|
struct object_id *bisect_rev;
|
2017-02-16 17:07:12 +00:00
|
|
|
char *steps_msg;
|
2020-09-24 12:33:40 +00:00
|
|
|
/*
|
|
|
|
* If no_checkout is non-zero, the bisection process does not
|
|
|
|
* checkout the trial commit but instead simply updates BISECT_HEAD.
|
|
|
|
*/
|
2020-08-07 21:58:36 +00:00
|
|
|
int no_checkout = ref_exists("BISECT_HEAD");
|
2020-08-07 21:58:38 +00:00
|
|
|
unsigned bisect_flags = 0;
|
2009-04-19 09:56:07 +00:00
|
|
|
|
2015-06-29 15:40:30 +00:00
|
|
|
read_bisect_terms(&term_bad, &term_good);
|
2009-05-09 15:55:42 +00:00
|
|
|
if (read_bisect_refs())
|
2016-06-17 20:21:12 +00:00
|
|
|
die(_("reading bisect refs failed"));
|
2009-05-09 15:55:42 +00:00
|
|
|
|
2020-08-07 21:58:38 +00:00
|
|
|
if (file_exists(git_path_bisect_first_parent()))
|
|
|
|
bisect_flags |= FIND_BISECTION_FIRST_PARENT_ONLY;
|
|
|
|
|
|
|
|
if (skipped_revs.nr)
|
|
|
|
bisect_flags |= FIND_BISECTION_ALL;
|
|
|
|
|
2020-02-17 08:40:37 +00:00
|
|
|
res = check_good_are_ancestors_of_bad(r, prefix, no_checkout);
|
|
|
|
if (res)
|
2022-04-13 20:01:38 +00:00
|
|
|
goto cleanup;
|
2009-05-09 15:55:47 +00:00
|
|
|
|
2022-08-02 15:33:15 +00:00
|
|
|
bisect_rev_setup(r, &revs, &rev_argv, prefix, "%s", "^%s", 1);
|
2020-08-07 21:58:38 +00:00
|
|
|
|
|
|
|
revs.first_parent_only = !!(bisect_flags & FIND_BISECTION_FIRST_PARENT_ONLY);
|
2009-05-17 15:36:44 +00:00
|
|
|
revs.limited = 1;
|
2009-05-09 15:55:42 +00:00
|
|
|
|
2009-05-17 15:36:44 +00:00
|
|
|
bisect_common(&revs);
|
2009-04-19 09:56:07 +00:00
|
|
|
|
2020-08-07 21:58:38 +00:00
|
|
|
find_bisection(&revs.commits, &reaches, &all, bisect_flags);
|
2009-06-06 04:41:34 +00:00
|
|
|
revs.commits = managed_skipped(revs.commits, &tried);
|
2009-04-19 09:56:07 +00:00
|
|
|
|
|
|
|
if (!revs.commits) {
|
|
|
|
/*
|
2020-02-17 08:40:39 +00:00
|
|
|
* We should return error here only if the "bad"
|
2009-04-19 09:56:07 +00:00
|
|
|
* commit is also a "skip" commit.
|
|
|
|
*/
|
2020-02-17 08:40:34 +00:00
|
|
|
res = error_if_skipped_commits(tried, NULL);
|
|
|
|
if (res < 0)
|
2022-08-02 15:33:11 +00:00
|
|
|
goto cleanup;
|
2016-06-17 20:21:12 +00:00
|
|
|
printf(_("%s was both %s and %s\n"),
|
2015-06-29 15:40:29 +00:00
|
|
|
oid_to_hex(current_bad_oid),
|
|
|
|
term_good,
|
|
|
|
term_bad);
|
2020-02-17 08:40:39 +00:00
|
|
|
|
2022-04-13 20:01:38 +00:00
|
|
|
res = BISECT_FAILED;
|
|
|
|
goto cleanup;
|
2009-04-19 09:56:07 +00:00
|
|
|
}
|
|
|
|
|
2010-02-28 22:19:09 +00:00
|
|
|
if (!all) {
|
2016-06-17 20:21:12 +00:00
|
|
|
fprintf(stderr, _("No testable commit found.\n"
|
2021-02-23 21:11:32 +00:00
|
|
|
"Maybe you started with bad path arguments?\n"));
|
2020-02-17 08:40:39 +00:00
|
|
|
|
2022-04-13 20:01:38 +00:00
|
|
|
res = BISECT_NO_TESTABLE_COMMIT;
|
|
|
|
goto cleanup;
|
2010-02-28 22:19:09 +00:00
|
|
|
}
|
|
|
|
|
2017-07-13 23:49:24 +00:00
|
|
|
bisect_rev = &revs.commits->item->object.oid;
|
2009-04-19 09:56:07 +00:00
|
|
|
|
convert "oidcmp() == 0" to oideq()
Using the more restrictive oideq() should, in the long run,
give the compiler more opportunities to optimize these
callsites. For now, this conversion should be a complete
noop with respect to the generated code.
The result is also perhaps a little more readable, as it
avoids the "zero is equal" idiom. Since it's so prevalent in
C, I think seasoned programmers tend not to even notice it
anymore, but it can sometimes make for awkward double
negations (e.g., we can drop a few !!oidcmp() instances
here).
This patch was generated almost entirely by the included
coccinelle patch. This mechanical conversion should be
completely safe, because we check explicitly for cases where
oidcmp() is compared to 0, which is what oideq() is doing
under the hood. Note that we don't have to catch "!oidcmp()"
separately; coccinelle's standard isomorphisms make sure the
two are treated equivalently.
I say "almost" because I did hand-edit the coccinelle output
to fix up a few style violations (it mostly keeps the
original formatting, but sometimes unwraps long lines).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2018-08-28 21:22:40 +00:00
|
|
|
if (oideq(bisect_rev, current_bad_oid)) {
|
2020-02-17 08:40:34 +00:00
|
|
|
res = error_if_skipped_commits(tried, current_bad_oid);
|
|
|
|
if (res)
|
2020-02-17 08:40:39 +00:00
|
|
|
return res;
|
2017-07-13 23:49:24 +00:00
|
|
|
printf("%s is the first %s commit\n", oid_to_hex(bisect_rev),
|
2015-06-29 15:40:29 +00:00
|
|
|
term_bad);
|
2020-02-17 08:40:39 +00:00
|
|
|
|
2018-11-10 05:48:59 +00:00
|
|
|
show_diff_tree(r, prefix, revs.commits->item);
|
2020-02-17 08:40:39 +00:00
|
|
|
/*
|
|
|
|
* This means the bisection process succeeded.
|
|
|
|
* Using BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND (-10)
|
|
|
|
* so that the call chain can simply check
|
|
|
|
* for negative return values for early returns up
|
|
|
|
* until the cmd_bisect__helper() caller.
|
|
|
|
*/
|
2022-04-13 20:01:38 +00:00
|
|
|
res = BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND;
|
|
|
|
goto cleanup;
|
2009-04-19 09:56:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nr = all - reaches - 1;
|
2010-01-19 15:13:33 +00:00
|
|
|
steps = estimate_bisect_steps(all);
|
2017-02-16 17:07:12 +00:00
|
|
|
|
|
|
|
steps_msg = xstrfmt(Q_("(roughly %d step)", "(roughly %d steps)",
|
|
|
|
steps), steps);
|
C style: use standard style for "TRANSLATORS" comments
Change all the "TRANSLATORS: [...]" comments in the C code to use the
regular Git coding style, and amend the style guide so that the
example there uses that style.
This custom style was necessary back in 2010 when the gettext support
was initially added, and was subsequently documented in commit
cbcfd4e3ea ("i18n: mention "TRANSLATORS:" marker in
Documentation/CodingGuidelines", 2014-04-18).
GNU xgettext hasn't had the parsing limitation that necessitated this
exception for almost 3 years. Since its 0.19 release on 2014-06-02
it's been able to recognize TRANSLATOR comments in the standard Git
comment syntax[1].
Usually we'd like to keep compatibility with software that's that
young, but in this case literally the only person who needs to be
using a gettext newer than 3 years old is Jiang Xin (the only person
who runs & commits "make pot" results), so I think in this case we can
make an exception.
This xgettext parsing feature was added after a thread on the Git
mailing list[2] which continued on the bug-gettext[3] list, but we
never subsequently changed our style & styleguide, do so.
There are already longstanding changes in git that use the standard
comment style & have their TRANSLATORS comments extracted properly
without getting the literal "*"'s mixed up in the text, as would
happen before xgettext 0.19.
Commit 7ff2683253 ("builtin-am: implement -i/--interactive",
2015-08-04) added one such comment, which in commit df0617bfa7 ("l10n:
git.pot: v2.6.0 round 1 (123 new, 41 removed)", 2015-09-05) got picked
up in the po/git.pot file with the right format, showing that Jiang
already runs a modern xgettext.
The xgettext parser does not handle the sort of non-standard comment
style that I'm amending here in sequencer.c, but that isn't standard
Git comment syntax anyway. With this change to sequencer.c & "make
pot" the comment in the pot file is now correct:
#. TRANSLATORS: %s will be "revert", "cherry-pick" or
-#. * "rebase -i".
+#. "rebase -i".
1. http://git.savannah.gnu.org/cgit/gettext.git/commit/?id=10af7fe6bd
2. <2ce9ec406501d112e032c8208417f8100bed04c6.1397712142.git.worldhello.net@gmail.com>
(https://public-inbox.org/git/2ce9ec406501d112e032c8208417f8100bed04c6.1397712142.git.worldhello.net@gmail.com/)
3. https://lists.gnu.org/archive/html/bug-gettext/2014-04/msg00016.html
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Acked-by: Jiang Xin <worldhello.net@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-05-11 21:20:12 +00:00
|
|
|
/*
|
|
|
|
* TRANSLATORS: the last %s will be replaced with "(roughly %d
|
|
|
|
* steps)" translation.
|
|
|
|
*/
|
2016-06-17 20:21:12 +00:00
|
|
|
printf(Q_("Bisecting: %d revision left to test after this %s\n",
|
|
|
|
"Bisecting: %d revisions left to test after this %s\n",
|
|
|
|
nr), nr, steps_msg);
|
2017-02-16 17:07:12 +00:00
|
|
|
free(steps_msg);
|
2020-09-24 12:33:39 +00:00
|
|
|
/* Clean up objects used, as they will be reused. */
|
2020-10-31 12:47:58 +00:00
|
|
|
repo_clear_commit_marks(r, ALL_REV_FLAGS);
|
2009-04-19 09:56:07 +00:00
|
|
|
|
2022-04-13 20:01:38 +00:00
|
|
|
res = bisect_checkout(bisect_rev, no_checkout);
|
|
|
|
cleanup:
|
|
|
|
release_revisions(&revs);
|
2022-08-02 15:33:15 +00:00
|
|
|
strvec_clear(&rev_argv);
|
2022-04-13 20:01:38 +00:00
|
|
|
return res;
|
2009-04-19 09:56:07 +00:00
|
|
|
}
|
|
|
|
|
2012-10-26 15:53:50 +00:00
|
|
|
static inline int log2i(int n)
|
|
|
|
{
|
|
|
|
int log2 = 0;
|
|
|
|
|
|
|
|
for (; n > 1; n >>= 1)
|
|
|
|
log2++;
|
|
|
|
|
|
|
|
return log2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int exp2i(int n)
|
|
|
|
{
|
|
|
|
return 1 << n;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Estimate the number of bisect steps left (after the current step)
|
|
|
|
*
|
|
|
|
* For any x between 0 included and 2^n excluded, the probability for
|
|
|
|
* n - 1 steps left looks like:
|
|
|
|
*
|
|
|
|
* P(2^n + x) == (2^n - x) / (2^n + x)
|
|
|
|
*
|
|
|
|
* and P(2^n + x) < 0.5 means 2^n < 3x
|
|
|
|
*/
|
|
|
|
int estimate_bisect_steps(int all)
|
|
|
|
{
|
|
|
|
int n, x, e;
|
|
|
|
|
|
|
|
if (all < 3)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
n = log2i(all);
|
|
|
|
e = exp2i(n);
|
|
|
|
x = all - e;
|
|
|
|
|
|
|
|
return (e < 3 * x) ? n : n - 1;
|
|
|
|
}
|
2017-09-29 06:49:39 +00:00
|
|
|
|
2022-08-19 10:08:32 +00:00
|
|
|
static int mark_for_removal(const char *refname,
|
2022-08-25 17:09:48 +00:00
|
|
|
const struct object_id *oid UNUSED,
|
|
|
|
int flag UNUSED, void *cb_data)
|
2017-09-29 06:49:39 +00:00
|
|
|
{
|
|
|
|
struct string_list *refs = cb_data;
|
|
|
|
char *ref = xstrfmt("refs/bisect%s", refname);
|
|
|
|
string_list_append(refs, ref);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bisect_clean_state(void)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
/* There may be some refs packed during bisection */
|
|
|
|
struct string_list refs_for_removal = STRING_LIST_INIT_NODUP;
|
|
|
|
for_each_ref_in("refs/bisect", mark_for_removal, (void *) &refs_for_removal);
|
|
|
|
string_list_append(&refs_for_removal, xstrdup("BISECT_HEAD"));
|
2017-11-15 03:14:29 +00:00
|
|
|
result = delete_refs("bisect: remove", &refs_for_removal, REF_NO_DEREF);
|
2017-09-29 06:49:39 +00:00
|
|
|
refs_for_removal.strdup_strings = 1;
|
|
|
|
string_list_clear(&refs_for_removal, 0);
|
|
|
|
unlink_or_warn(git_path_bisect_expected_rev());
|
|
|
|
unlink_or_warn(git_path_bisect_ancestors_ok());
|
|
|
|
unlink_or_warn(git_path_bisect_log());
|
|
|
|
unlink_or_warn(git_path_bisect_names());
|
|
|
|
unlink_or_warn(git_path_bisect_run());
|
|
|
|
unlink_or_warn(git_path_bisect_terms());
|
2020-08-07 21:58:37 +00:00
|
|
|
unlink_or_warn(git_path_bisect_first_parent());
|
2017-09-29 06:49:39 +00:00
|
|
|
/* Cleanup head-name if it got left by an old version of git-bisect */
|
|
|
|
unlink_or_warn(git_path_head_name());
|
|
|
|
/*
|
|
|
|
* Cleanup BISECT_START last to support the --no-checkout option
|
|
|
|
* introduced in the commit 4796e823a.
|
|
|
|
*/
|
|
|
|
unlink_or_warn(git_path_bisect_start());
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|