git-big-picture command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
git-big-picture: command not found
or when using sudo you get the following error message
sudo: git-big-picture: command not found
Solutions to git-big-picture: command not found
How To Fix git-big-picture: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu git-big-picture is provided by git-big-picture package.
git-big-picture is:
git-big-picture is a visualization tool for Git repositories. You can think of it as a filter that removes uninteresting commits from a DAG modelling a Git repository and thereby exposes the big picture: for example the hierarchy of tags and branches. git-big-picture supports convenience output options and can filter different classes of commits. It uses the Graphviz utility to render images that are pleasing to the eye.
To fix this problem, we can install more using the command below.
sudo apt-get -y install git-big-picture
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install git-big-picture.
sudo apt -y install git-big-picture
Or if you have aptitude installed you can use the following command.
sudo aptitude install git-big-picture
Summary
In this tutorial we learn how to fix git-big-picture command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.