Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

remove git

rm -rf .git
-r => Remove directories and there contents recursively.
-f => Ignore nonexistent files and arguments, never prompt
for more info run 
rm --help
Comment

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 :: ssh upload file to server 
Shell :: commit changes from different branches 
Shell :: remove folder from gitlab main branch repository 
Shell :: ffmpeg add audio to image 
Shell :: install drush on ubuntu 
Shell :: how to start gnome desktop on fedora terminal 
Shell :: loops in shell script 
Shell :: how to log into a remote linux server 
Shell :: displaying the last line of output bash 
Shell :: install docker ubuntu 20 
Shell :: install prisma nextjs 
Shell :: add user centos 7 sudo 
Shell :: curl check response headers 
Shell :: Copy directory from local host to remote server 
Shell :: bash add all numbers 
Shell :: git push branch to remote 
Shell :: take sudo access inside vim 
Shell :: bash sum numbers 
Shell :: how to change the directory in git bash 
Shell :: what is my ip 
Shell :: git update .gitignore 
Shell :: flask wtforms pip install 
Shell :: install from package.json 
Shell :: powershell start a process and wait for it to finish 
Shell :: bash change user 
Shell :: rename branch in git 
Shell :: delete empty pdf page 
Shell :: get current directory batch 
Shell :: anydesk command line CENTOS 
Shell :: immutable byte ssh 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =