Show git changes in the last N days
So you want to see all of the changes since some time in the past.
commit=$(git log --pretty=oneline --reverse --since={yesterday} | awk '{print $1}'); meldcomm=$(echo $commit | cut -d ' ' -f1); git meld $meldcomm^