mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-05 13:11:43 +00:00
fc49bdf6c4
New termite theme Changed i3 configuration Added run script and find_blob script
15 lines
342 B
Bash
Executable File
15 lines
342 B
Bash
Executable File
#!/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
|