[memo] search for files with diffs with peco and view the diffs.


gdiff () {
    git status | tail +7 | grep -v 'no changes' | cut -f 2 | awk -F' ' '{print $2}' | peco | xargs git diff
}