You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
426 B

#!/bin/bash
toplevel=$(git rev-parse --show-toplevel 2> /dev/null)
if [ ! -d "${toplevel}/.git" ]; then
echo "Can't find .git folder"
exit
fi
gitFolder="${toplevel}/.git"
{
find $gitFolder/objects/pack/ -name "*.idx" | while read i; do
git show-index < "$i" | awk '{print $2}';
done
find $gitFolder/objects/ -type f | grep -v '/pack/' | awk -F'/' '{print $(NF-1)$NF}'
} | while read o; do
git cat-file -p $o
done