I am doing an install of git on Ubuntu 20.04, according to this tutorial. I executed from "Install Git on Linux", the Debian/Ubuntu parts. And then I get the errors:
make: *** No rule to make target 'all'. Stop.
make: *** No rule to make target 'install'. Stop.
at point 3 under "Build Git from source on Linux". I am new to Linux, but it seems as though make
is automatically installed. When I run:
apt list --installed
it is listed:
make/focal,now 4.2.1-1.2 amd64 [installed,automatic]
Can you help on how to take this forward or approach learning about the problem?
sudo apt install git
. Do not invent bicycles with square wheels. – N0rbert Jul 04 '21 at 16:31