diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2007-01-20 03:28:19 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-20 21:32:31 -0800 |
commit | db055e65d20b20f8f32eb85ee1a2417d3b95c1c7 (patch) | |
tree | ba5983bc5a58f05f011a6a5896d7a392d86ab67b /reflog-walk.c | |
parent | 8860fd42fcf5a7853f7d7c2198793183320293ff (diff) | |
download | git-db055e65d20b20f8f32eb85ee1a2417d3b95c1c7.tar.gz |
--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>
Diffstat (limited to 'reflog-walk.c')
-rw-r--r-- | reflog-walk.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/reflog-walk.c b/reflog-walk.c index d4b49c7354..2d974116de 100644 --- a/reflog-walk.c +++ b/reflog-walk.c @@ -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; |