--walk-reflogs: disallow uninteresting commits

Do not allow uninteresting commits with --walk-reflogs, since it is
not clear what should be shown in these cases:

	$ git log --walk-reflogs master..next
	$ git log --walk-reflogs ^master

Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
maint
Johannes Schindelin 2007-01-20 03:28:19 +01:00 committed by Junio C Hamano
parent 8860fd42fc
commit db055e65d2
1 changed files with 3 additions and 0 deletions

View File

@ -145,6 +145,9 @@ void add_reflog_for_walk(struct reflog_walk_info *info,
char *branch, *at = strchr(name, '@');
struct commit_reflog *commit_reflog;

if (commit->object.flags & UNINTERESTING)
die ("Cannot walk reflogs for %s", name);

branch = xstrdup(name);
if (at && at[1] == '{') {
char *ep;