How To Install git-review on Fedora 36
Introduction
In this tutorial we learn how to install git-review
on Fedora 36.
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 Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install git-review.
Install git-review on Fedora 36 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 Fedora 36 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 Fedora 36
To uninstall only the git-review
package we can use the following command:
sudo dnf remove git-review
git-review Package Contents on Fedora 36
/usr/bin/git-review
/usr/lib/python3.10/site-packages/git_review
/usr/lib/python3.10/site-packages/git_review-2.2.0-py3.10.egg-info
/usr/lib/python3.10/site-packages/git_review-2.2.0-py3.10.egg-info/PKG-INFO
/usr/lib/python3.10/site-packages/git_review-2.2.0-py3.10.egg-info/SOURCES.txt
/usr/lib/python3.10/site-packages/git_review-2.2.0-py3.10.egg-info/dependency_links.txt
/usr/lib/python3.10/site-packages/git_review-2.2.0-py3.10.egg-info/entry_points.txt
/usr/lib/python3.10/site-packages/git_review-2.2.0-py3.10.egg-info/not-zip-safe
/usr/lib/python3.10/site-packages/git_review-2.2.0-py3.10.egg-info/pbr.json
/usr/lib/python3.10/site-packages/git_review-2.2.0-py3.10.egg-info/requires.txt
/usr/lib/python3.10/site-packages/git_review-2.2.0-py3.10.egg-info/top_level.txt
/usr/lib/python3.10/site-packages/git_review/__init__.py
/usr/lib/python3.10/site-packages/git_review/__pycache__
/usr/lib/python3.10/site-packages/git_review/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_review/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_review/__pycache__/cmd.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_review/__pycache__/cmd.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_review/cmd.py
/usr/lib/python3.10/site-packages/git_review/tests
/usr/lib/python3.10/site-packages/git_review/tests/__init__.py
/usr/lib/python3.10/site-packages/git_review/tests/__pycache__
/usr/lib/python3.10/site-packages/git_review/tests/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_review/tests/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_review/tests/__pycache__/check_test_id_hashes.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_review/tests/__pycache__/check_test_id_hashes.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_review/tests/__pycache__/prepare.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_review/tests/__pycache__/prepare.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_review/tests/__pycache__/test_git_review.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_review/tests/__pycache__/test_git_review.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_review/tests/__pycache__/test_unit.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_review/tests/__pycache__/test_unit.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_review/tests/__pycache__/utils.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_review/tests/__pycache__/utils.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_review/tests/check_test_id_hashes.py
/usr/lib/python3.10/site-packages/git_review/tests/prepare.py
/usr/lib/python3.10/site-packages/git_review/tests/test_git_review.py
/usr/lib/python3.10/site-packages/git_review/tests/test_unit.py
/usr/lib/python3.10/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 Fedora 36 using yum and [dnf]((/fedora/36/dnf/).