Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1144600
  • 博文数量: 312
  • 博客积分: 12522
  • 博客等级: 上将
  • 技术积分: 3376
  • 用 户 组: 普通用户
  • 注册时间: 2008-02-27 18:35
文章分类

全部博文(312)

文章存档

2016年(3)

2015年(1)

2013年(1)

2012年(28)

2011年(101)

2010年(72)

2009年(13)

2008年(93)

分类: Android平台

2015-06-03 16:39:09

How to uninstall git

To uninstall git just follow these instructions.


Uninstall just git

sudo apt-get remove git

This will remove just the git package itself.

Uninstall git and it's dependencies

sudo apt-get remove --auto-remove git

This will remove the git package and any other dependant packages which are no longer needed.

Purging your config/data too

If you also want to delete your local/config files for git then this will work.

 Caution! Purged config/data can not be restored by reinstalling the package.
sudo apt-get purge git

Or similarly, like this git

sudo apt-get purge --auto-remove git
阅读(1034) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~