gitinspector command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gitinspector: command not found
or when using sudo you get the following error message
sudo: gitinspector: command not found
Solutions to gitinspector: command not found
How To Fix gitinspector: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gitinspector is provided by gitinspector package.
gitinspector is:
gitinspector is a statistical analysis tool for git repositories. It creates informative and visually appealling reports in various output formats.
Its features include:
- Shows cumulative work by each author in the history
- Filters results by extension
- Can display a statistical timeline analysis
- Scans for all filetypes (by extension) found in the repository
- Multi-threaded; uses multiple instances of git to speed up analysis
- Supports HTML, XML and plain text (terminal) output
To fix this problem, we can install more using the command below.
sudo apt-get -y install gitinspector
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gitinspector.
sudo apt -y install gitinspector
Or if you have aptitude installed you can use the following command.
sudo aptitude install gitinspector
Summary
In this tutorial we learn how to fix gitinspector command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.