Skip to content

Commit

Permalink
Handle all branch names in domain history search
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostwords committed Jun 10, 2024
1 parent 6a799da commit 7f14f70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion search_log.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ for rev in $(git rev-list HEAD -- log.txt); do

printf "%s %-20.20s %s\n" \
"$(git show -s --format="%h %ci" "$rev")" \
"$(git show -s --format="%s" "$rev" | sed -e 's/^.*(//' -e 's/).*$//' -e 's/\(Add data \|Update seed data: \|master \|from \)//g')" \
"$(git show -s --format="%s" "$rev" | sed -e 's/^.*(//' -e 's/).*$//' -e 's/\(Add data \|Update seed data: \|master \|from \)//g' | rev | cut -d ' ' -f 1,2 | rev)" \
"$found"
done

0 comments on commit 7f14f70

Please sign in to comment.