mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-17 11:19:15 +00:00
10 lines
211 B
Bash
Executable File
10 lines
211 B
Bash
Executable File
#!/bin/sh
|
|
obj_name="$1"
|
|
shift
|
|
git log "$@" --pretty=format:'%T %h %s' \
|
|
| while read tree commit subject ; do
|
|
if git ls-tree -r $tree | grep -q "$obj_name" ; then
|
|
echo $commit "$subject"
|
|
fi
|
|
done
|