git-debrebase command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
git-debrebase: command not found
or when using sudo you get the following error message
sudo: git-debrebase: command not found
Solutions to git-debrebase: command not found
How To Fix git-debrebase: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu git-debrebase is provided by git-debrebase package.
git-debrebase is:
git-debrebase is a tool for representing in git, and manipulating, Debian packages based on upstream source code.
git-debrebase is an alternative to workflows including git-dpm, gbp pq, and direct use of quilt patches.
To fix this problem, we can install more using the command below.
sudo apt-get -y install git-debrebase
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install git-debrebase.
sudo apt -y install git-debrebase
Or if you have aptitude installed you can use the following command.
sudo aptitude install git-debrebase
Summary
In this tutorial we learn how to fix git-debrebase command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.