Ramkumar Ramachandra <artagnon@xxxxxxxxx> writes: > Currently, when we try to resolve @{<N>} or @{<date>} when the reflog > for the current branch doesn't go back far enough, we get errors like: > > $ git show @{10000} > fatal: Log for '' only has 7 entries. > > $ git show @{10000.days.ago} > warning: Log for '' only goes back to Tue, 21 May 2013 14:14:45 +0530. > ... > > The empty string '' looks ugly and inconsistent with the output of > <branch>@{<N>}. Replace it with the string 'current branch'. Wouldn't that be '*the* current branch'? More importantly, doesn't "real_ref" have the name of the branch? Suppose the user said "git show @{10000}" instead of "git show master@{10000}" while on 'master'. It could be argued that it may look nicer to say "your current branch does not have enough update history" instead of saying "master does not..." (i.e. different input to ask for the same thing, different output depending on the way the user asked). It also could be argued that they should produce the same diagnosis that is more informative. I am slightly leaning toward the latter. > Signed-off-by: Ramkumar Ramachandra <artagnon@xxxxxxxxx> > --- > sha1_name.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/sha1_name.c b/sha1_name.c > index 416a673..683b4bd 100644 > --- a/sha1_name.c > +++ b/sha1_name.c > @@ -517,6 +517,10 @@ static int get_sha1_basic(const char *str, int len, unsigned char *sha1) > } > if (read_ref_at(real_ref, at_time, nth, sha1, NULL, > &co_time, &co_tz, &co_cnt)) { > + if (!len) { > + str = "current branch"; > + len = strlen("current branch"); > + } > if (at_time) > warning("Log for '%.*s' only goes " > "back to %s.", len, str, -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html