From f1d00572aa691fe6381ff002817d95ce2e13ea4d Mon Sep 17 00:00:00 2001 From: Mauro Rosero P Date: Sat, 7 Dec 2024 23:13:08 -0500 Subject: [PATCH] [INIT] Proyecto inicializado --- .gitignore | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..33502d5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# +# 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/*