How To Install gitqlient on CentOS 8
Introduction
In this tutorial we learn how to install gitqlient on CentOS 8.
What is gitqlient
GitQlient, pronounced as git+client (/gɪtˈklaɪənt/) is a multi-platform Git client originally forked from QGit. Nowadays it goes beyond of just a fork and adds a lot of new functionality. Some of the major feature you can find are 1. New features * Easy access to remote actions like and branches * Branches management * Tags and stashes management * Submodules handling * Allow to open several repositories in the same window * Better visualization of the commits and the work in progress * Better visualization of the repository view * GitHub/GitLab integration * Embedded text editor with syntax highlight for C++ 2. Improved UI experience * Easy access to the main Git actions * Better code separation between Views and Models * Simplification of the different options one can do, keeping it to what a Git client is
We can use yum or dnf to install gitqlient on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install gitqlient.
Install gitqlient on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install gitqlient using yum by running the following command:
sudo yum -y install gitqlient
Install gitqlient on CentOS 8 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install gitqlient using dnf by running the following command:
sudo dnf -y install gitqlient
How To Uninstall gitqlient on CentOS 8
To uninstall only the gitqlient package we can use the following command:
sudo dnf remove gitqlient
References
Summary
In this tutorial we learn how to install gitqlient on CentOS 8 using yum and dnf.