How To Install gitqlient on Fedora 34

gitqlient is Multi-platform Git client

Introduction

In this tutorial we learn how to install gitqlient on Fedora 34.

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 Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install gitqlient.

Install gitqlient on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install gitqlient using dnf by running the following command:

sudo dnf -y install gitqlient

Install gitqlient on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install gitqlient using yum by running the following command:

sudo yum -y install gitqlient

How To Uninstall gitqlient on Fedora 34

To uninstall only the gitqlient package we can use the following command:

sudo dnf remove gitqlient

gitqlient Package Contents on Fedora 34

/usr/bin/gitqlient
/usr/lib/.build-id
/usr/lib/.build-id/01
/usr/lib/.build-id/01/cc0f268dced240df36100598ec7c8488f63ce4
/usr/share/applications/gitqlient.desktop
/usr/share/doc/gitqlient
/usr/share/doc/gitqlient/README.md
/usr/share/icons/hicolor/128x128/apps/gitqlient.png
/usr/share/icons/hicolor/16x16/apps/gitqlient.png
/usr/share/icons/hicolor/24x24/apps/gitqlient.png
/usr/share/icons/hicolor/256x256/apps/gitqlient.png
/usr/share/icons/hicolor/32x32/apps/gitqlient.png
/usr/share/icons/hicolor/48x48/apps/gitqlient.png
/usr/share/icons/hicolor/512x512/apps/gitqlient.png
/usr/share/icons/hicolor/64x64/apps/gitqlient.png
/usr/share/icons/hicolor/96x96/apps/gitqlient.png
/usr/share/icons/hicolor/scalable/apps/gitqlient.svg
/usr/share/licenses/gitqlient
/usr/share/licenses/gitqlient/LICENSE

References

Summary

In this tutorial we learn how to install gitqlient on Fedora 34 using yum and dnf.