“eliminar git” Código de respuesta

Cómo eliminar git del proyecto

rm -rf .git*
Lovely Louse

eliminar la carpeta .git

rm -rf .git
Courageous Curlew

Eliminar el seguimiento de git

/* Remove Git tracking from an entire folder/directory */

cd projectName // Navigate to the project directory
rm -rf .git // Remove git tracking 
Intra

eliminar 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
Mr J

git eliminar la carpeta de forma remota

git rm -r --cached <folder>
git commit -m "Removed Folder"
git push origin master
Concerned Chipmunk

Cómo desinstalar 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
guruwalker

Respuestas similares a “eliminar git”

Preguntas similares a “eliminar git”

Más respuestas relacionadas con “eliminar git” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código