version number: 0.0.8 author: Gavin Cooper
A tool for supervising multiple repositories, checking their status and providing regular reminders of unfinished work.
This tool is primarily designed for those developers or repository users who may have multiple (read 10+) repositories all possibly being touched during a day. It's main benefit will be providing a regular report of repositories that are in an uncomitted/unpushed or unpulled state, allowing you to write your commit messages and push your local changes whilst the work is still fresh in your mind.
To install use pip:
$ pip install repovisor
Or clone the repository:
$ git clone https://github.com/gjc216/repovisor.git
$ python setup.py install
As a manually run script, or added as a cron job it will provide a status for all repositories in it's internal database, showing the results either within a terminal, or as a web generated report
Once installed you should have access to a command line program. To use it try:
$ repovise search /home/<userid>/<repostore>
This will give output for all repositories within . Note the default is to query the upstream locations for all repos found.
It can also create a shorter representation of each repository by passing the --brief, -b
option
Written in python, it is based off the GitPython package , providing user facing UI features
Currently the VCS it supports is:
- Git
- -Mercurial-
- -Subversion-
TBD