“eliminar la carpeta .idea de git” Código de respuesta

eliminar la carpeta .idea de git

Blacklist the .idea folder by adding the “.idea” folder to the .gitignore file in master, 
then commit this change.
In your branch, check this file out from master. 
git checkout master -- .gitignore
Remove the .idea folder from the git tree
git rm --cached -r .idea

and commit this change to your branch.
Majhi Bhai

quitar .idea de git

for reference : https://www.david-merrick.com/2017/08/04/how-to-remove-the-idea-folder-from-git/
Lokesh003Coding

Respuestas similares a “eliminar la carpeta .idea de git”

Preguntas similares a “eliminar la carpeta .idea de git”

Más respuestas relacionadas con “eliminar la carpeta .idea de git” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código