From 814653b0d76ea123279a0021224bee506a007242 Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 15 Nov 2025 09:52:00 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Update=20.gitignore=20w?= =?UTF-8?q?ith=20new=20ignore=20patterns=20for=20Ansible,=20VSCode=20and?= =?UTF-8?q?=20Windows=20system=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added new patterns to the .gitignore file to ignore temporary output, secrets, and other unwanted files. This will help keep the repository clean and prevent accidental commits of sensitive data. --- .gitignore | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c191586 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Ansible specific (optional - ignore temporary output or secrets) +*.retry +*.vault +*.vault_pass +*.secret +*.log + +# VSCode settings +.vscode/ +*.code-workspace + +# Windows system files +Thumbs.db +ehthumbs.db +Desktop.ini +$RECYCLE.BIN/ +*.lnk + +# Backup files +*~ +*.bak +*.swp +*.swo +*.tmp \ No newline at end of file