* [PATCH] git log -g: Complain, but do not fail, when no reflogs are there
@ 2007-07-23 23:39 Johannes Schindelin
2007-07-24 5:37 ` Junio C Hamano
2007-07-24 7:26 ` Alex Riesen
0 siblings, 2 replies; 7+ messages in thread
From: Johannes Schindelin @ 2007-07-23 23:39 UTC (permalink / raw)
To: git, gitster
When asking "git log -g --all", clearly you want to see only those refs
that do have reflogs, but you do not want it to fail, either.
So instead of die()ing, complain about it, but move on to the other refs.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
---
reflog-walk.c | 7 ++++---
reflog-walk.h | 2 +-
revision.c | 7 ++++---
3 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/reflog-walk.c b/reflog-walk.c
index c983858..7809fad 100644
--- a/reflog-walk.c
+++ b/reflog-walk.c
@@ -136,7 +136,7 @@ void init_reflog_walk(struct reflog_walk_info** info)
*info = xcalloc(sizeof(struct reflog_walk_info), 1);
}
-void add_reflog_for_walk(struct reflog_walk_info *info,
+int add_reflog_for_walk(struct reflog_walk_info *info,
struct commit *commit, const char *name)
{
unsigned long timestamp = 0;
@@ -188,7 +188,7 @@ void add_reflog_for_walk(struct reflog_walk_info *info,
}
}
if (!reflogs || reflogs->nr == 0)
- die("No reflogs found for '%s'", branch);
+ return error("No reflogs found for '%s'", branch);
path_list_insert(branch, &info->complete_reflogs)->util
= reflogs;
}
@@ -200,13 +200,14 @@ void add_reflog_for_walk(struct reflog_walk_info *info,
if (commit_reflog->recno < 0) {
free(branch);
free(commit_reflog);
- return;
+ return error("No reflog found for '%s'", name);
}
} else
commit_reflog->recno = reflogs->nr - recno - 1;
commit_reflog->reflogs = reflogs;
add_commit_info(commit, commit_reflog, &info->reflogs);
+ return 0;
}
void fake_reflog_parent(struct reflog_walk_info *info, struct commit *commit)
diff --git a/reflog-walk.h b/reflog-walk.h
index a4f7015..7ca1438 100644
--- a/reflog-walk.h
+++ b/reflog-walk.h
@@ -2,7 +2,7 @@
#define REFLOG_WALK_H
extern void init_reflog_walk(struct reflog_walk_info** info);
-extern void add_reflog_for_walk(struct reflog_walk_info *info,
+extern int add_reflog_for_walk(struct reflog_walk_info *info,
struct commit *commit, const char *name);
extern void fake_reflog_parent(struct reflog_walk_info *info,
struct commit *commit);
diff --git a/revision.c b/revision.c
index 16f35c7..038693c 100644
--- a/revision.c
+++ b/revision.c
@@ -118,10 +118,11 @@ static void add_pending_object_with_mode(struct rev_info *revs, struct object *o
{
if (revs->no_walk && (obj->flags & UNINTERESTING))
die("object ranges do not make sense when not walking revisions");
+ if (revs->reflog_info && obj->type == OBJ_COMMIT &&
+ add_reflog_for_walk(revs->reflog_info,
+ (struct commit *)obj, name))
+ return;
add_object_array_with_mode(obj, name, &revs->pending, mode);
- if (revs->reflog_info && obj->type == OBJ_COMMIT)
- add_reflog_for_walk(revs->reflog_info,
- (struct commit *)obj, name);
}
void add_pending_object(struct rev_info *revs, struct object *obj, const char *name)
--
1.5.3.rc2.31.gf7d7-dirty
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] git log -g: Complain, but do not fail, when no reflogs are there
2007-07-23 23:39 [PATCH] git log -g: Complain, but do not fail, when no reflogs are there Johannes Schindelin
@ 2007-07-24 5:37 ` Junio C Hamano
2007-07-24 9:14 ` Johannes Schindelin
2007-07-24 7:26 ` Alex Riesen
1 sibling, 1 reply; 7+ messages in thread
From: Junio C Hamano @ 2007-07-24 5:37 UTC (permalink / raw)
To: Johannes Schindelin; +Cc: git, gitster
Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
> When asking "git log -g --all", clearly you want to see only those refs
> that do have reflogs, but you do not want it to fail, either.
>
> So instead of die()ing, complain about it, but move on to the other refs.
Hmph, do we even want to error(), I wonder...
Can you tell, at that point, if there were explicit branch
names given originally on the command line, or the refs came
from --all?
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] git log -g: Complain, but do not fail, when no reflogs are there
2007-07-23 23:39 [PATCH] git log -g: Complain, but do not fail, when no reflogs are there Johannes Schindelin
2007-07-24 5:37 ` Junio C Hamano
@ 2007-07-24 7:26 ` Alex Riesen
2007-07-24 9:16 ` Johannes Schindelin
1 sibling, 1 reply; 7+ messages in thread
From: Alex Riesen @ 2007-07-24 7:26 UTC (permalink / raw)
To: Johannes Schindelin; +Cc: git, gitster
On 7/24/07, Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
>
> When asking "git log -g --all", clearly you want to see only those refs
> that do have reflogs, but you do not want it to fail, either.
>
> So instead of die()ing, complain about it, but move on to the other refs.
>
I believe you wont even see these complaints: the pager will start shortly
afterwards and fill the screen with commits, completely hiding the errors.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] git log -g: Complain, but do not fail, when no reflogs are there
2007-07-24 5:37 ` Junio C Hamano
@ 2007-07-24 9:14 ` Johannes Schindelin
0 siblings, 0 replies; 7+ messages in thread
From: Johannes Schindelin @ 2007-07-24 9:14 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
Hi,
On Mon, 23 Jul 2007, Junio C Hamano wrote:
> Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
>
> > When asking "git log -g --all", clearly you want to see only those refs
> > that do have reflogs, but you do not want it to fail, either.
> >
> > So instead of die()ing, complain about it, but move on to the other refs.
>
> Hmph, do we even want to error(), I wonder...
Maybe not. I thought it was some useful information, though.
> Can you tell, at that point, if there were explicit branch names given
> originally on the command line, or the refs came
> from --all?
No:
if (!strcmp(arg, "--all")) {
handle_all(revs, flags);
continue;
}
which calls
static void handle_all(struct rev_info *revs, unsigned flags)
{
struct all_refs_cb cb;
cb.all_revs = revs;
cb.all_flags = flags;
for_each_ref(handle_one_ref, &cb);
}
which in turn calls
static int handle_one_ref(const char *path, const unsigned char *sha1, int flag,
void *cb_data)
{
struct all_refs_cb *cb = cb_data;
struct object *object = get_reference(cb->all_revs, path, sha1,
cb->all_flags);
add_pending_object(cb->all_revs, object, path);
return 0;
}
If you do not say --all, handle_revision_arg() is called, which calls
add_pending_object thus:
add_pending_object(revs, &a->object, this);
add_pending_object(revs, &b->object, next);
or thus
add_pending_object_with_mode(revs, object, arg, mode);
So no, there is not really a chance to see how the refs were specified at
the time add_pending_object() is called.
Ciao,
Dscho
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] git log -g: Complain, but do not fail, when no reflogs are there
2007-07-24 7:26 ` Alex Riesen
@ 2007-07-24 9:16 ` Johannes Schindelin
2007-07-24 10:17 ` Alex Riesen
0 siblings, 1 reply; 7+ messages in thread
From: Johannes Schindelin @ 2007-07-24 9:16 UTC (permalink / raw)
To: Alex Riesen; +Cc: git, gitster
Hi,
On Tue, 24 Jul 2007, Alex Riesen wrote:
> On 7/24/07, Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
> >
> > When asking "git log -g --all", clearly you want to see only those refs
> > that do have reflogs, but you do not want it to fail, either.
> >
> > So instead of die()ing, complain about it, but move on to the other refs.
> >
>
> I believe you wont even see these complaints: the pager will start shortly
> afterwards and fill the screen with commits, completely hiding the errors.
You can see it briefly, but it is hidden by default. Which is a good
thing. If you set the pager to "cat" (which is happily not the default!)
you can see them clearly. Until you are swamped by the rest of the
output.
Maybe this is a feature?
Ciao,
Dscho
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] git log -g: Complain, but do not fail, when no reflogs are there
2007-07-24 9:16 ` Johannes Schindelin
@ 2007-07-24 10:17 ` Alex Riesen
2007-07-24 11:11 ` Johannes Schindelin
0 siblings, 1 reply; 7+ messages in thread
From: Alex Riesen @ 2007-07-24 10:17 UTC (permalink / raw)
To: Johannes Schindelin; +Cc: git, gitster
On 7/24/07, Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
> On Tue, 24 Jul 2007, Alex Riesen wrote:
> > On 7/24/07, Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
> > >
> > > When asking "git log -g --all", clearly you want to see only those refs
> > > that do have reflogs, but you do not want it to fail, either.
> > >
> > > So instead of die()ing, complain about it, but move on to the other refs.
> > >
> >
> > I believe you wont even see these complaints: the pager will start shortly
> > afterwards and fill the screen with commits, completely hiding the errors.
>
> You can see it briefly, but it is hidden by default. Which is a good
> thing. If you set the pager to "cat" (which is happily not the default!)
> you can see them clearly. Until you are swamped by the rest of the
> output.
>
> Maybe this is a feature?
>
Maybe. I can't see it at all. Should I downgrade something or propose
a patch to put some delay after this error? I think not.
I think second Junios suggestion, but this is of course no
difference to me.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] git log -g: Complain, but do not fail, when no reflogs are there
2007-07-24 10:17 ` Alex Riesen
@ 2007-07-24 11:11 ` Johannes Schindelin
0 siblings, 0 replies; 7+ messages in thread
From: Johannes Schindelin @ 2007-07-24 11:11 UTC (permalink / raw)
To: Alex Riesen; +Cc: git, gitster
Hi,
On Tue, 24 Jul 2007, Alex Riesen wrote:
> On 7/24/07, Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
> > On Tue, 24 Jul 2007, Alex Riesen wrote:
> > > On 7/24/07, Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
> > > >
> > > > When asking "git log -g --all", clearly you want to see only those refs
> > > > that do have reflogs, but you do not want it to fail, either.
> > > >
> > > > So instead of die()ing, complain about it, but move on to the other
> > refs.
> > > >
> > >
> > > I believe you wont even see these complaints: the pager will start shortly
> > > afterwards and fill the screen with commits, completely hiding the errors.
> >
> > You can see it briefly, but it is hidden by default. Which is a good
> > thing. If you set the pager to "cat" (which is happily not the default!)
> > you can see them clearly. Until you are swamped by the rest of the
> > output.
> >
> > Maybe this is a feature?
> >
>
> Maybe. I can't see it at all. Should I downgrade something or propose
> a patch to put some delay after this error? I think not.
>
> I think second Junios suggestion, but this is of course no
> difference to me.
Okay, two votes are enough to make me reconsider. Junio, could you please
replace the two "error(...)"s by "-1"s? Only if you apply the patch, of
course...
Ciao,
Dscho
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2007-07-24 11:11 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-23 23:39 [PATCH] git log -g: Complain, but do not fail, when no reflogs are there Johannes Schindelin
2007-07-24 5:37 ` Junio C Hamano
2007-07-24 9:14 ` Johannes Schindelin
2007-07-24 7:26 ` Alex Riesen
2007-07-24 9:16 ` Johannes Schindelin
2007-07-24 10:17 ` Alex Riesen
2007-07-24 11:11 ` Johannes Schindelin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).