Install git on ubunt - make: *** No rule to make target `all'. Stop.
I followed this link to install git Install git on ubntu and I got stuck at this part:
Now, you can make the package and install it by typing these two commands:
make prefix=/usr/local all
sudo make prefix=/usr/local install
I keep getting this error:
make: *** No rule to make target `all'. Stop.
What's the cause of this issue?!
Why are you compiling and installing git yourself instead of using the version from your package manager?
Just do
apt-get install git
and you're done.