Skip to content

Commit

Permalink
improve
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Aug 12, 2024
1 parent 54c2f71 commit 8cde3b2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/bisect/list-commits.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,8 @@ filtered_commits=$(echo "$commits" | while read -r commit; do
fi
done)
# Print the filtered commits
echo "$filtered_commits"
# Print the filtered commits in `$hash: $title` format
echo "$filtered_commits" | while read -r commit; do
title=$(git show -s --format='%s' "$commit")
echo "$commit: $title"
done

0 comments on commit 8cde3b2

Please sign in to comment.