k4rthik / git-cal

github like contributions calendar on terminal
MIT License
1.12k stars 61 forks source link

showing git-cal output for all your git repositories #16

Open zmughal opened 11 years ago

zmughal commented 11 years ago

If you can configure the git log command used, you could use mr to get the git-cal output for a group of repositories: ranging from all the repositories tied to a particular project or every repository you've ever written!

Something like: git cal --git-command="mr -c ~/.mrconfig-projectXYZ" which would call mr -c ~/.mrconfig-projectXYZ log [... rest of args ...]

xr09 commented 11 years ago

A quick bash in my git folder. for r in $(ls); do echo $r; cd $r; git-cal; echo; cd ..; done

zmughal commented 11 years ago

That's not the same. What I suggest will make a single calendar. :-)

xr09 commented 11 years ago

I know, just love to show my bash oneliners everywhere these days. ;)

k4rthik commented 11 years ago

Sounds like an interesting feature to have. Adding to TODOs