CI-infrastructure of Computer Systems and Networks Department
NOTE: Before start
git-review
installation process be sure that python is already installed in your OS. If not so then download Python and install it. During setup of python it’s strongly recommended to add install directory to yourPATH
and to check thatpip
will be installed. For more details about how to install python see Using Python on Windows
Run Command Prompt as an Administrator:
Start
(or ⊞ Win).cmd
, and then press CTRL + SHIFT + ENTER.Make sure that python
is already installed:
$ python --version
The result should be look like as follows:
Install git-review
with pip
(Python package installing tool):
$ pip install git-review
Now git-review
is ready and can be used to submit changes, e.g.:
$ git clone <some_git_repository>
[make_some_changes]
$ git add .
$ git commit -m "Some commit message"
$ git review
NOTE: For more details on how to work with
git-review
see Gerrit Tutorial