When working simultaneously on several git repositories, it is easy to loose the overview on the advancement of your work. This is why I decided to write gitcheck, a tool which reports the status of the repositories it finds in a file tree. This report can of course be displayed on the terminal but also be sent by email.
pip install git+git://github.com/badele/gitcheck.git
In a simple invocation, gitcheck shows for each repository found in the file tree rooted at the current working directory if they have changes to be committed or commits to be pushed.
>gitcheck.pyThis invocation is substantially identical to the previous one, but the generated report also enumerates modified files and pending commits.
>gitcheck.py -v-v, --verbose Show files & commits
--debug Show debug message
-r, --remote force remote update(slow)
-u, --untracked Show untracked files
-b, --bell bell on action needed
-w <sec>, --watch=<sec> after displaying, wait <sec> and run again
-i <re>, --ignore-branch=<re> ignore branches matching the regex <re>
-d <dir>, --dir=<dir> Search <dir> for repositories
-m <maxdepth>, --maxdepth=<maxdepth> Limit the depth of repositories search
-q, --quiet Display info only when repository needs action
-e, --email Send an email with result as html, using mail.properties parameters
--init-email Initialize mail.properties file (has to be modified by user using JSON Format)
A French version of this document is available here: http://bruno.adele.im/projets/gitcheck/

