How To Install multi-git-status on Fedora 36

In this tutorial we learn how to install multi-git-status in Fedora 36. multi-git-status is Show uncommitted, untracked and unpushed changes for multiple Git repos

Introduction

In this tutorial we learn how to install multi-git-status on Fedora 36.

What is multi-git-status

Show uncommitted, untracked and unpushed changes for multiple Git repos. multi-git-status shows * Uncommitted changes if there are unstaged or uncommitted changes on the checked out branch. * Untracked files if there are untracked files which are not ignored. * Needs push (BRANCH) if the branch is tracking a (remote) branch which is behind. * Needs upstream (BRANCH) if a branch does not have a local or remote upstream branch configured. Changes in the branch may otherwise never be pushed or merged. * Needs pull (BRANCH) if the branch is tracking a (remote) branch which is ahead. This requires that the local git repo already knows about the remote changes (i.e. you’ve done a fetch), or that you specify the -f option. Multi-git-status does NOT contact the remote by default. * X stashes if there are stashes.

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

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

sudo dnf -y install multi-git-status

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

sudo yum -y install multi-git-status

How To Uninstall multi-git-status on Fedora 36

To uninstall only the multi-git-status package we can use the following command:

sudo dnf remove multi-git-status

multi-git-status Package Contents on Fedora 36

/usr/bin/mgitstatus
/usr/share/doc/multi-git-status
/usr/share/doc/multi-git-status/README.md
/usr/share/doc/multi-git-status/screenshot.png
/usr/share/licenses/multi-git-status
/usr/share/licenses/multi-git-status/LICENSE.txt
/usr/share/man/man1/mgitstatus.1.gz

References

Summary

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