Skip to content
This repository was archived by the owner on Jul 2, 2019. It is now read-only.

Commit a765499

Browse files
kjbracey2gitster
authored andcommitted
revision.c: treat A...B merge bases as if manually specified
The documentation assures users that "A...B" is defined as "A B --not $(git merge-base --all A B)". This wasn't in fact quite true, because the calculated merge bases were not sent to add_rev_cmdline(). The main effect of this was that although git rev-list --ancestry-path A B --not $(git merge-base --all A B) worked, the simpler form git rev-list --ancestry-path A...B failed with a "no bottom commits" error. Other potential users of bottom commits could also be affected by this problem, if they examine revs->cmdline_info; I came across the issue in my proposed history traversal refinements series. So ensure that the calculated merge bases are sent to add_rev_cmdline(), flagged with new 'whence' enum value REV_CMD_MERGE_BASE. Signed-off-by: Kevin Bracey <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent f659031 commit a765499

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

revision.c

+17
Original file line numberDiff line numberDiff line change
@@ -915,6 +915,19 @@ static void add_rev_cmdline(struct rev_info *revs,
915915
info->nr++;
916916
}
917917

918+
static void add_rev_cmdline_list(struct rev_info *revs,
919+
struct commit_list *commit_list,
920+
int whence,
921+
unsigned flags)
922+
{
923+
while (commit_list) {
924+
struct object *object = &commit_list->item->object;
925+
add_rev_cmdline(revs, object, sha1_to_hex(object->sha1),
926+
whence, flags);
927+
commit_list = commit_list->next;
928+
}
929+
}
930+
918931
struct all_refs_cb {
919932
int all_flags;
920933
int warned_bad_reflog;
@@ -1092,6 +1105,7 @@ static void prepare_show_merge(struct rev_info *revs)
10921105
add_pending_object(revs, &head->object, "HEAD");
10931106
add_pending_object(revs, &other->object, "MERGE_HEAD");
10941107
bases = get_merge_bases(head, other, 1);
1108+
add_rev_cmdline_list(revs, bases, REV_CMD_MERGE_BASE, UNINTERESTING);
10951109
add_pending_commit_list(revs, bases, UNINTERESTING);
10961110
free_commit_list(bases);
10971111
head->object.flags |= SYMMETRIC_LEFT;
@@ -1179,6 +1193,9 @@ int handle_revision_arg(const char *arg_, struct rev_info *revs, int flags, unsi
11791193

11801194
if (symmetric) {
11811195
exclude = get_merge_bases(a, b, 1);
1196+
add_rev_cmdline_list(revs, exclude,
1197+
REV_CMD_MERGE_BASE,
1198+
flags_exclude);
11821199
add_pending_commit_list(revs, exclude,
11831200
flags_exclude);
11841201
free_commit_list(exclude);

revision.h

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ struct rev_cmdline_info {
3535
REV_CMD_PARENTS_ONLY,
3636
REV_CMD_LEFT,
3737
REV_CMD_RIGHT,
38+
REV_CMD_MERGE_BASE,
3839
REV_CMD_REV
3940
} whence;
4041
unsigned flags;

t/t6019-rev-list-ancestry-path.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ test_expect_success 'rev-list F...I' '
8181
test_cmp expect actual
8282
'
8383

84-
test_expect_failure 'rev-list --ancestry-path F...I' '
84+
test_expect_success 'rev-list --ancestry-path F...I' '
8585
for c in F H I; do echo $c; done >expect &&
8686
git rev-list --ancestry-path --format=%s F...I |
8787
sed -e "/^commit /d" |

0 commit comments

Comments
 (0)