gitbatch command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gitbatch: command not found
or when using sudo you get the following error message
sudo: gitbatch: command not found
Solutions to gitbatch: command not found
How To Fix gitbatch: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gitbatch is provided by gitbatch package.
gitbatch is:
Managing multiple git repositories is easier than ever. Often one would end up working on many directories and manually pulling updates etc. To make this routine faster, gitbatch was created, a simple tool to handle this job. Although the focus is batch jobs, one can still do de facto micro management of git repositories (e.g add/reset, stash, commit etc.)
To fix this problem, we can install more using the command below.
sudo apt-get -y install gitbatch
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gitbatch.
sudo apt -y install gitbatch
Or if you have aptitude installed you can use the following command.
sudo aptitude install gitbatch
Summary
In this tutorial we learn how to fix gitbatch command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.