mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-05 05:01:43 +00:00
15 lines
342 B
Bash
15 lines
342 B
Bash
|
#!/bin/sh
|
||
|
obj_name="$1"
|
||
|
shift
|
||
|
git ls-files --stage \
|
||
|
| if grep -q "$obj_name"; then
|
||
|
echo Found in staging area. Run git ls-files --stage to see.
|
||
|
fi
|
||
|
|
||
|
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
|