Metadata-Version: 1.2
Name: gitbuster
Version: 0.9b4
Summary: Python Qt4 frontend for git filter-branch.
Description: =========
       |gitbuster
       |=========
       |Formerly qGitFilterBranch.
       |
       |" If there's something strange / In your history / Who you gonna call ? / GitBuster! "
       |
       |Python Qt4 frontend for git filter-branch. gitbuster allows you to :
       |
       |- use filters to display only the commits matching
       |    * committed before/after a date (e.g. commits before 01/01/11)
       |    * committed before/after a weekday (e.g. commits after friday)
       |    * committed before/after an hour (e.g. commits after 20:00)
       |    * the log message contains some string (e.g. matching "CHANGEME")
       |    * the user/email contains some string (e.g. matching "wrong.email@")
       |
       |- edit the displayed commits to change
       |    * the authored/committed date
       |    * the author/committer name and email
       |    * the log message
       |
       |- change multiple values at once
       |
       |- automatically re-order a given set of commits onto a given set of time ranges
       |
       |--------
       |Safe try
       |--------
       |With the demo.sh you can try gitbuster in a safe environment. The script
       |will check that all dependencies are met and install GitPython in a virtualenv.
       |That way it won't interfere with your system packaging tools (like apt).
       |
       |--------------------
       |Installing From PyPI
       |--------------------
       |
       |Installing with easy_install::
       |
       |    $ easy_install gitbuster
       |
       |-------------------
       |Manual Installation
       |-------------------
       |Download the tarball, then::
       |
       |    $ tar xvf gitbuster-0.9b1.tar.gz
       |    $ cd gitbuster
       |
       |Installing with distutils::
       |
       |    $ python setup.py install
       |
       |Installing with distutils2::
       |    
       |    $ python -m "distutils2.run" install_dist
       |
       |---------------------
       |Building From Sources
       |---------------------
       |Dependencies:
       |
       |- pyuic4: on debian/ubuntu systems, look for a package named 'pyqt4-dev-tools'.
       |- gcc: on most systems, look for a package named 'gcc'.
       |- make: on most systems, look for a package named 'make'.
       |- GitPython
       |
       |
       |To build gitbuster UI files::
       |
       |    $ cd gitbuster/
       |    $ make
       |
       |To launch gitbuster::
       |
       |    $ export PYTHONPATH=$PYTHONPATH:<path_to_>/gitbuster
       |    $ cd gitbuster
       |    $ ./gitbuster
Keywords: git,frontend,change dates,rewrite history
Home-page: https://github.com/mike-perdide/gitbuster
Author: Julien Miotte
Author-email: miotte.julien@gmail.com
Maintainer: UNKNOWN
Maintainer-email: UNKNOWN
License: GPLv3
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Environment :: X11 Applications :: Qt
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2.6
Classifier: Topic :: Software Development :: Version Control
Download-URL: UNKNOWN
Project-URL: Source repository,https://github.com/mike-perdide/gitbuster
Requires-Dist: gfbi_core (>=0.1)
Requires-Python: >=2.5
