25 lines
370 B
Text
25 lines
370 B
Text
|
#
|
||
|
# Developers & Devops Environment(.gitignotre)
|
||
|
#
|
||
|
|
||
|
# Ignorar todo
|
||
|
*
|
||
|
# Permitir el seguimiento de carpetas específicas
|
||
|
# !carpeta1/
|
||
|
!bin/
|
||
|
!bin/lib/
|
||
|
!bin/msg/
|
||
|
!bin/config/
|
||
|
|
||
|
# Permitir el seguimiento de archivos específicos
|
||
|
# !archivo1.txt
|
||
|
!README.md
|
||
|
!.gitignore
|
||
|
|
||
|
# Permitir archivos en carpetas específicas
|
||
|
# !carpeta1/*.txt
|
||
|
!bin/*
|
||
|
!bin/lib/*
|
||
|
!bin/msg/*
|
||
|
!bin/config/*
|