I need to make a .gitignore
delete all the folders except one.
Example:
Library/nao_ignorar
Library/ignorar
Library/ignorar
Library/ignorar
....
I need to make a .gitignore
delete all the folders except one.
Example:
Library/nao_ignorar
Library/ignorar
Library/ignorar
Library/ignorar
....
So:
# Ignore tudo:
*
# Exceto este diretório:
!Library/nao_ignorar Library/
The rest will be ignored. If you need to skip more directories below this directory, you need to specify the other directories, for example:
# Ignore tudo:
*
# Exceto estes diretórios:
!Library/nao_ignorar Library/
!Library/nao_ignorar Library/*/
!Library/nao_ignorar Library/*/OutroDiretorioNaoIgnorado/
!Library/nao_ignorar Library/*/OutroDiretorioNaoIgnorado/*/*
Hello try the following me your .gitignore
# Ignorar todos os diretórios e arquivos em um diretório.
tmp/**/*
I think it solves it.