add replay and log to the usage string of git-bisect
[gitweb.git] / reflog-walk.c
index 8e2cd2fcf603cdcf667b8d5d9c61a6ce902dd189..653ec956f08141b3e15f52665cef7a260f8ed6a4 100644 (file)
@@ -165,6 +165,14 @@ void add_reflog_for_walk(struct reflog_walk_info *info,
        if (item)
                reflogs = item->util;
        else {
+               if (*branch == '\0') {
+                       unsigned char sha1[20];
+                       const char *head = resolve_ref("HEAD", sha1, 0, NULL);
+                       if (!head)
+                               die ("No current branch");
+                       free(branch);
+                       branch = xstrdup(head);
+               }
                reflogs = read_complete_reflog(branch);
                if (!reflogs || reflogs->nr == 0)
                        die("No reflogs found for '%s'", branch);
@@ -233,7 +241,7 @@ void show_reflog_message(struct reflog_walk_info* info, int oneline)
                        else
                                printf("%d", commit_reflog->reflogs->nr
                                       - 2 - commit_reflog->recno);
-                       printf("}: ");
+                       printf("}: %s", info->message);
                }
                else {
                        printf("Reflog: %s@{", commit_reflog->reflogs->ref);