On Thu, 4 May 2006, Martin Langhoff wrote: > On 5/3/06, Martin Langhoff <martin.langhoff@xxxxxxxxx> wrote: > > Soon after v1.3.0 git-log --parents got broken. When using --parents, > > Ok -- perhaps that was a bit of a rushed statement. Reading back on > the archives, it seems like it may have been intentional. No it wasn't. "git log --parents" was definitely supposed to still work. That said, I suspect a git-cvsserver kind of usage is better off using "git-rev-list --parents HEAD" instead, which didn't break in the first place. > I have to confess, I don't quite follow the changes happening in that > series of commits. If --parents is really not coming back I'll change > the log entry parsing in cvsserver. However, I suspect git-log should > error out on it ("fatal: deprecated option") so porcelains break > explicitly, rather than silently. No, the option really isn't deprecated, it was just missed because nothing seemed to use it.. How about this diff? Signed-off-by: Yadda yadda Linus --- diff --git a/log-tree.c b/log-tree.c index 9634c46..f9c6f7c 100644 --- a/log-tree.c +++ b/log-tree.c @@ -3,6 +3,15 @@ #include "diff.h" #include "commit.h" #include "log-tree.h" +static void show_parents(struct commit *commit, int abbrev) +{ + struct commit_list *p; + for (p = commit->parents; p ; p = p->next) { + struct commit *parent = p->item; + printf(" %s", diff_unique_abbrev(parent->object.sha1, abbrev)); + } +} + void show_log(struct rev_info *opt, struct log_info *log, const char *sep) { static char this_header[16384]; @@ -14,7 +23,10 @@ void show_log(struct rev_info *opt, stru opt->loginfo = NULL; if (!opt->verbose_header) { - puts(sha1_to_hex(commit->object.sha1)); + fputs(diff_unique_abbrev(commit->object.sha1, abbrev_commit), stdout); + if (opt->parents) + show_parents(commit, abbrev_commit); + putchar('\n'); return; } @@ -40,6 +52,8 @@ void show_log(struct rev_info *opt, stru printf("%s%s", opt->commit_format == CMIT_FMT_ONELINE ? "" : "commit ", diff_unique_abbrev(commit->object.sha1, abbrev_commit)); + if (opt->parents) + show_parents(commit, abbrev_commit); if (parent) printf(" (from %s)", diff_unique_abbrev(parent->object.sha1, abbrev_commit)); putchar(opt->commit_format == CMIT_FMT_ONELINE ? ' ' : '\n'); - : 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