legit command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
legit: command not found
or when using sudo you get the following error message
sudo: legit: command not found
Solutions to legit: command not found
How To Fix legit: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu legit is provided by legit package.
legit is:
This program provides several commands that help to automate certain tasks with Git: seamless branch switching, syncing repository, creating and merging branches, manipulating remote branches.
To fix this problem, we can install more using the command below.
sudo apt-get -y install legit
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install legit.
sudo apt -y install legit
Or if you have aptitude installed you can use the following command.
sudo aptitude install legit
Summary
In this tutorial we learn how to fix legit command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.