add replay and log to the usage string of git-bisect
[gitweb.git] / reflog-walk.c
index 8ccbe97760009745b9bbbb123691dcfb7072c87e..653ec956f08141b3e15f52665cef7a260f8ed6a4 100644 (file)
@@ -71,7 +71,7 @@ static int get_reflog_recno_by_time(struct complete_reflogs *array,
        unsigned long timestamp)
 {
        int i;
-       for (i = array->nr - 1; i >= 0; i++)
+       for (i = array->nr - 1; i >= 0; i--)
                if (timestamp >= array->items[i].timestamp)
                        return i;
        return -1;
@@ -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);