How To Install git-review on Rocky Linux 8
Introduction
In this tutorial we learn how to install git-review
on Rocky Linux 8.
What is git-review
An extension for source control system Git that creates and manages review requests in the patch management system Gerrit. It replaces the rfc.sh script.
We can use yum
or dnf
to install git-review
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install git-review.
Install git-review on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install git-review
using dnf
by running the following command:
sudo dnf -y install git-review
Install git-review on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install git-review
using yum
by running the following command:
sudo yum -y install git-review
How To Uninstall git-review on Rocky Linux 8
To uninstall only the git-review
package we can use the following command:
sudo dnf remove git-review
git-review Package Contents on Rocky Linux 8
/usr/bin/git-review
/usr/lib/python3.6/site-packages/git_review
/usr/lib/python3.6/site-packages/git_review-1.28.0-py3.6.egg-info
/usr/lib/python3.6/site-packages/git_review-1.28.0-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/git_review-1.28.0-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/git_review-1.28.0-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/git_review-1.28.0-py3.6.egg-info/entry_points.txt
/usr/lib/python3.6/site-packages/git_review-1.28.0-py3.6.egg-info/not-zip-safe
/usr/lib/python3.6/site-packages/git_review-1.28.0-py3.6.egg-info/pbr.json
/usr/lib/python3.6/site-packages/git_review-1.28.0-py3.6.egg-info/requires.txt
/usr/lib/python3.6/site-packages/git_review-1.28.0-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/git_review/__init__.py
/usr/lib/python3.6/site-packages/git_review/__pycache__
/usr/lib/python3.6/site-packages/git_review/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/git_review/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/git_review/__pycache__/cmd.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/git_review/__pycache__/cmd.cpython-36.pyc
/usr/lib/python3.6/site-packages/git_review/cmd.py
/usr/lib/python3.6/site-packages/git_review/tests
/usr/lib/python3.6/site-packages/git_review/tests/__init__.py
/usr/lib/python3.6/site-packages/git_review/tests/__pycache__
/usr/lib/python3.6/site-packages/git_review/tests/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/git_review/tests/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/git_review/tests/__pycache__/check_test_id_hashes.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/git_review/tests/__pycache__/check_test_id_hashes.cpython-36.pyc
/usr/lib/python3.6/site-packages/git_review/tests/__pycache__/prepare.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/git_review/tests/__pycache__/prepare.cpython-36.pyc
/usr/lib/python3.6/site-packages/git_review/tests/__pycache__/test_git_review.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/git_review/tests/__pycache__/test_git_review.cpython-36.pyc
/usr/lib/python3.6/site-packages/git_review/tests/__pycache__/test_unit.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/git_review/tests/__pycache__/test_unit.cpython-36.pyc
/usr/lib/python3.6/site-packages/git_review/tests/__pycache__/utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/git_review/tests/__pycache__/utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/git_review/tests/check_test_id_hashes.py
/usr/lib/python3.6/site-packages/git_review/tests/prepare.py
/usr/lib/python3.6/site-packages/git_review/tests/test_git_review.py
/usr/lib/python3.6/site-packages/git_review/tests/test_unit.py
/usr/lib/python3.6/site-packages/git_review/tests/utils.py
/usr/share/doc/git-review
/usr/share/doc/git-review/AUTHORS
/usr/share/doc/git-review/README.rst
/usr/share/licenses/git-review
/usr/share/licenses/git-review/LICENSE
/usr/share/man/man1/git-review.1.gz
References
Summary
In this tutorial we learn how to install git-review
on Rocky Linux 8 using yum and dnf.