Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to uninstall git

To remove just git package itself from Ubuntu 14.04 execute on terminal:
$ sudo apt-get remove git

To remove the git package and any other dependant package which are no longer needed from Ubuntu Trusty.
$ sudo apt-get remove --auto-remove git

Purging git
If you also want to delete configuration and/or data files of git from Ubuntu Trusty then this will work:
$ sudo apt-get purge git


To delete configuration and/or data files of git and it's dependencies from Ubuntu Trusty then execute:
$ sudo apt-get purge --auto-remove git
Comment

uninstall git

$ sudo apt-get remove git
$ sudo apt-get remove --auto-remove git
$ sudo apt-get purge git
$ sudo apt-get purge --auto-remove git
Comment

PREVIOUS NEXT
Code Example
Shell :: scp upload 
Shell :: hoe to install LAMP on ubuntu 
Shell :: tcpdump filter ip address 
Shell :: mpi installation in linux 
Shell :: terminal git add ssh key 
Shell :: readme folder structure 
Shell :: nohup redirect output 
Shell :: ssh connect with specific port 
Shell :: start uvicorn 
Shell :: bash 
Shell :: run mutiple sass files at once 
Shell :: fish wsl 
Shell :: dash bootstrap import 
Shell :: adding in ssh agent 
Shell :: git commit example 
Shell :: rmdir directory not empty 
Shell :: what is pipe line command in linux? 
Shell :: node global install 
Shell :: how to run a sh file in terminal 
Shell :: unzip command ubuntu 
Shell :: sudo apt-get install libboost-all-dev 
Shell :: get .net version 
Shell :: how to run bash scripts 
Shell :: Steps to deploy your flutter project with surge 
Shell :: change file read only permissions linux 
Shell :: ubuntu send input to screen 
Shell :: ubuntu edit sources.list 
Shell :: how to install fish in debian 
Shell :: git log all branches 
Shell :: install gitlab runner on centos 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =