大约 6 个月前,我尝试安装 git,但最终安装/配置失败。然后我被调到另一个项目,不再需要使用 git。我现在回到了这个项目,想从头开始重新安装 git。所以我问:
如何从我的 Ubuntu Desktop 12.04 机器上彻底卸载 git?
当我跑步时which git
我得到:
/usr/bin/git
答案1
你可以使用这个命令:
sudo apt-get remove git
答案2
您的用户与 git 相关的个人设置通常存储在您的文件夹中的文件夹~/.git
中。.git
/home/$USER
只需删除~/.gitconfig
,您的设置就会恢复到原始的未配置状态。
如果你真的想彻底删除 git 并重新开始您实际上不需要这样做,请执行上述语句删除该.git
文件夹,然后执行以下操作:sudo apt-get purge git; sudo apt-get autoremove; sudo apt-get install git
答案3
使用以下方法重新安装 git
sudo apt-get install git
通常可以解决大多数安装问题。
答案4
要从 Ubuntu 中删除 git 包本身,请在终端上执行:
sudo apt-get remove git
卸载 git 及其依赖包
sudo apt-get remove --auto-remove git
从这里