From 004f9e04b9944fa707978443cb1befce42a17992 Mon Sep 17 00:00:00 2001 From: Andrea Frittoli Date: Fri, 6 Nov 2020 09:35:10 +0000 Subject: [PATCH] Finetune .gitignore Instead of ignoring the whole content folder, only ignore folders that we sync. Add a few more ignore files for python and IDEs. Signed-off-by: Andrea Frittoli --- .gitignore | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 01c751c..b5286a7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,24 @@ -resources/_gen/ -public/ +# Node package-lock.json node_modules/ + +# Generated content +resources/_gen/ +public/ assets/js/version-switcher.js -content/en/docs/ -.coverage + +# IDEs .vscode -tkn_web_env \ No newline at end of file +**/.idea/ +.coverage + +# Python file for sync +tkn_web_env +**/.venv +**/__pycache__/ + +# Synced docs +content/en/docs/Pipelines +content/en/docs/Triggers +content/en/docs/CLI +content/en/vault/ -- GitLab