Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#!/usr/bin/env bash
set -e
i=0
while IFS= read line; do
echo "$i,$line"
i=$((i+1))
done