“Como ocultar o arquivo Gitignore” Respostas de código

Git remove todos os arquivos do Gitignore

git ls-files -i --exclude-from=.gitignore | %{git rm --cached $_}

// works with windows powershell
Cold Shower Coding

Remova os arquivos Gitignore

git ls-files --ignored --exclude-standard -z | xargs -0 git rm --cached
git commit -am "Remove ignored files"


// answer from: thSoft
Hurt Hummingbird

Como ocultar o arquivo Gitignore

git rm --cached .gitignore -r 
Manga301

Respostas semelhantes a “Como ocultar o arquivo Gitignore”

Perguntas semelhantes a “Como ocultar o arquivo Gitignore”

Mais respostas relacionadas para “Como ocultar o arquivo Gitignore” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código