CodeReview Home Page is located at http://fabricesalvaire.github.io/CodeReview
Authors: Fabrice Salvaire
The aim of CodeReview is to provide tools for code review tasks on local Git repositories. As opposite to software like Gerrit for example, CodeReview is not designed to perform code review at a team level, but to check the stage before a commit and show the difference between two versions. In particular, CodeReview fills the gap with IDEs that don't provide efficiently these features.
CodeReview provides two applications pyqgit and diff-viewer.
The main features of CodeReview are:
- display and browse the log and paches of a Git repository
- diff side by side using Patience algorithm
- watch for file system changes
Diff viewer features:
- stage/unstage file
- number of context lines
- font size
- line number mode
- align mode
- complete mode
- highlight mode
RPM packages are available for the Fedora distribution on https://copr.fedorainfracloud.org/coprs/fabricesalvaire/code-review
Run these commands to enable the copr repository and install the last release:
dnf copr enable fabricesalvaire/code-review
dnf install CodeReview
CodeReview is available on PyPI repository: https://pypi.python.org/pypi/CodeReview
Run this command to install the last release:
pip install CodeReview
Notice, it requires Python 3 and a C compiler.
CodeReview source code is hosted at https://github.com/FabriceSalvaire/CodeReview
Clone the Git repository using this command:
git clone git@github.com:FabriceSalvaire/CodeReview.git
Then build and install CodeReview using these commands:
python setup.py build python setup.py install