gita command not found

In this troubleshooting guide we learn how to fix gita command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

gita: command not found

or when using sudo you get the following error message

sudo: gita: command not found

Solutions to gita: command not found

How To Fix gita: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu gita is provided by gita package.

gita is:

Gita is a command-line tool to manage multiple git repos:

  • display the status of multiple Git repos such as branch, modification, commit message side by side
  • (batch) delegate git commands/aliases from any working directory

If several repos are related, Gita helps to see their status together too.

To fix this problem, we can install more using the command below.

sudo apt-get -y install gita

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install gita.

sudo apt -y install gita

Or if you have aptitude installed you can use the following command.

sudo aptitude install gita

Summary

In this tutorial we learn how to fix gita command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.