Uninstall Git completely on Ubuntu?
Posted
by Millisami
on Super User
See other posts from Super User
or by Millisami
Published on 2010-05-04T19:16:06Z
Indexed on
2010/05/04
20:49 UTC
Read the original article
Hit count: 398
I installed Git on Ubuntu Lucid (latest) manually as following.
cd ~/tmp
wget http://kernel.org/pub/software/scm/git/git-1.7.0.6.tar.gz
tar -xzvf git-1.7.0.6.tar.gz
cd git-1.7.0.6.tar.gz
./configure
sudo make
sudo make install
Now, how can I completely uninstall it?
© Super User or respective owner