Uninstall Git completely on Ubuntu?
Posted
by Millisami
on Stack Overflow
See other posts from Stack Overflow
or by Millisami
Published on 2010-05-04T19:16:06Z
Indexed on
2010/05/04
19:18 UTC
Read the original article
Hit count: 378
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?
© Stack Overflow or respective owner