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

how to remove stuff from git

git rm -r File-Name
Comment

PREVIOUS NEXT
Code Example
Shell :: linux count files in subdirectories 
Shell :: requirements.txt conda 
Shell :: sudo cd 
Shell :: install pycord 
Shell :: python on pop os 
Shell :: bash escape special characters in variable 
Shell :: ionic capacitor splash screen generator 
Shell :: ubuntu alien install 
Shell :: powershell run bat file 
Shell :: linux append content of file to another linux 
Shell :: git view stash 
Shell :: install docker in ubuntu 
Shell :: edit crontab daily 
Shell :: how to remove all files from staging area git 
Shell :: give all users access to root folder 
Shell :: why jupyter notebook suggestions not showing after upgrade 
Shell :: launch bash script from application mac without opening terminal 
Shell :: create folder zip with cmd in windows 10 
Shell :: install entityframeworkcore nuget in asp.net core 3.0 
Shell :: upgrade python using choco (win 10) 
Shell :: tar file linux 
Shell :: mac install pytorch 3.6 
Shell :: download putty for ubuntu 
Shell :: refresh gnome shell 
Shell :: prettier code formatter is removing ; 
Shell :: how to install .sh file in ubuntu 
Shell :: homebrew version 
Shell :: set up openssh 
Shell :: compress directory with bzip2 
Shell :: conda install keyboard 
ADD CONTENT
Topic
Content
Source link
Name
6+9 =