Skip to content

Commit

Permalink
[PATCH] Prevent git-rev-list without --merge-order producing duplicat…
Browse files Browse the repository at this point in the history
…es in output

If b is reachable from a, then:

	 git-rev-list a b

argument would print one of the commits twice.

This patch fixes that problem. A previous problem fixed it for the
--merge-order switch.

Signed-off-by: Jon Seymour <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
jonseymour authored and Linus Torvalds committed Jun 20, 2005
1 parent eff19d5 commit 51b1e17
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
13 changes: 7 additions & 6 deletions epoch.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ typedef int (*emitter_func) (struct commit *);

int sort_list_in_merge_order(struct commit_list *list, emitter_func emitter);

#define UNINTERESTING (1u<<2)
#define BOUNDARY (1u<<3)
#define VISITED (1u<<4)
#define DISCONTINUITY (1u<<5)
#define DUPCHECK (1u<<6)
#define UNINTERESTING (1u<<2)
#define BOUNDARY (1u<<3)
#define VISITED (1u<<4)
#define DISCONTINUITY (1u<<5)
#define DUPCHECK (1u<<6)
#define LAST_EPOCH_FLAG (1u<<6)


#endif /* EPOCH_H */
#endif /* EPOCH_H */
5 changes: 3 additions & 2 deletions rev-list.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#define SEEN (1u << 0)
#define INTERESTING (1u << 1)
#define COUNTED (1u << 2)
#define SHOWN (LAST_EPOCH_FLAG << 2)

static const char rev_list_usage[] =
"usage: git-rev-list [OPTION] commit-id <commit-id>\n"
Expand All @@ -29,6 +30,7 @@ static int show_breaks = 0;

static void show_commit(struct commit *commit)
{
commit->object.flags |= SHOWN;
if (show_breaks) {
prefix = "| ";
if (commit->object.flags & DISCONTINUITY) {
Expand All @@ -55,15 +57,14 @@ static void show_commit(struct commit *commit)

static int filter_commit(struct commit * commit)
{
if (commit->object.flags & UNINTERESTING)
if (commit->object.flags & (UNINTERESTING|SHOWN))
return CONTINUE;
if (min_age != -1 && (commit->date > min_age))
return CONTINUE;
if (max_age != -1 && (commit->date < max_age))
return STOP;
if (max_count != -1 && !max_count--)
return STOP;

return DO;
}

Expand Down

0 comments on commit 51b1e17

Please sign in to comment.