“Git Ignore no funciona en el repositorio local” Código de respuesta

Git ignora no funciona

git rm -r --cached .;
git add .;
git commit -m "Untracked files issue resolved to fix .gitignore";
Second Pubescence

git ignorar el archivo no funciona

git rm -rf --cached .
git add .
Dull Deer

Git Ignore no funciona en el repositorio local

3393

Even if you haven't tracked the files so far, Git seems to be able to "know" about them even after you add them to .gitignore.

WARNING: First commit or stash your current changes, or you will lose them.

Then run the following commands from the top folder of your Git repository:


git rm -r --cached .
git add .
git commit -m "fixed untracked files"
shafeeque

Respuestas similares a “Git Ignore no funciona en el repositorio local”

Preguntas similares a “Git Ignore no funciona en el repositorio local”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código