If you want to see a graphical representation of a git repository's activity, use the gitstats
utility: http://gitstats.sourceforge.net/
All the following commands assume use of, e.g., bash. By running the following command you can get the first commit that has the same date as today.
> first_commit=`git log --pretty=format:"%h" --since "$(date +%Y-%m%-d):00:00"
And the following command will process the git repository for statistics:
> gitstats -c commit_begin=<COMMIT_ID> . target/gitstats
And by combining these we can get a simple command we can set as an alias, if we wish:
> first_commit=`git log --pretty=format:"%h" --since "$(date +%Y-%m%-d):00:00" | tail -n1`; gitstats -c commit_begin=$first_commit . target/gitstats
Then open ./target/gitstats/index.html
with your preferred browser