How To Install git-pull-request on Fedora 36

In this tutorial we learn how to install git-pull-request in Fedora 36. git-pull-request is Command line tool to send GitHub pull-request

Introduction

In this tutorial we learn how to install git-pull-request on Fedora 36.

What is git-pull-request

git-pull-request is a command line tool to send GitHub pull-request from your terminal.

We can use yum or dnf to install git-pull-request on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install git-pull-request.

Install git-pull-request 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-pull-request using dnf by running the following command:

sudo dnf -y install git-pull-request

Install git-pull-request 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-pull-request using yum by running the following command:

sudo yum -y install git-pull-request

How To Uninstall git-pull-request on Fedora 36

To uninstall only the git-pull-request package we can use the following command:

sudo dnf remove git-pull-request

git-pull-request Package Contents on Fedora 36

/usr/bin/git-pull-request
/usr/lib/python3.10/site-packages/git_pull_request
/usr/lib/python3.10/site-packages/git_pull_request-6.0.2.dist-info
/usr/lib/python3.10/site-packages/git_pull_request-6.0.2.dist-info/INSTALLER
/usr/lib/python3.10/site-packages/git_pull_request-6.0.2.dist-info/LICENSE
/usr/lib/python3.10/site-packages/git_pull_request-6.0.2.dist-info/METADATA
/usr/lib/python3.10/site-packages/git_pull_request-6.0.2.dist-info/WHEEL
/usr/lib/python3.10/site-packages/git_pull_request-6.0.2.dist-info/entry_points.txt
/usr/lib/python3.10/site-packages/git_pull_request-6.0.2.dist-info/top_level.txt
/usr/lib/python3.10/site-packages/git_pull_request/__init__.py
/usr/lib/python3.10/site-packages/git_pull_request/__pycache__
/usr/lib/python3.10/site-packages/git_pull_request/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_pull_request/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_pull_request/__pycache__/pagure.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_pull_request/__pycache__/pagure.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_pull_request/__pycache__/textparse.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_pull_request/__pycache__/textparse.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_pull_request/pagure.py
/usr/lib/python3.10/site-packages/git_pull_request/tests
/usr/lib/python3.10/site-packages/git_pull_request/tests/__init__.py
/usr/lib/python3.10/site-packages/git_pull_request/tests/__pycache__
/usr/lib/python3.10/site-packages/git_pull_request/tests/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_pull_request/tests/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_pull_request/tests/__pycache__/test_gpr.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_pull_request/tests/__pycache__/test_gpr.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_pull_request/tests/__pycache__/test_textparse.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/git_pull_request/tests/__pycache__/test_textparse.cpython-310.pyc
/usr/lib/python3.10/site-packages/git_pull_request/tests/test_gpr.py
/usr/lib/python3.10/site-packages/git_pull_request/tests/test_textparse.py
/usr/lib/python3.10/site-packages/git_pull_request/textparse.py
/usr/share/doc/git-pull-request
/usr/share/doc/git-pull-request/README.rst

References

Summary

In this tutorial we learn how to install git-pull-request on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).