From bfa26ed18987651694d2c907c9e5df21775ef685 Mon Sep 17 00:00:00 2001 From: Lucilio Correia Date: Fri, 8 Nov 2024 14:07:26 -0300 Subject: [PATCH] add: ignore system files, docker files and some wp default files --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4dec209 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# do not index local settings +docker-compose.y*ml + +# ignore system files +.DS_Store + +# do not bother adding index.php from wp-content (will be replaced) +wp-content/themes/index.php +wp-content/plugins/index.php \ No newline at end of file