From aa8b471062cc019bc5cfeeb5257a676719ea79d9 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Mon, 15 Jan 2024 16:25:42 +0100 Subject: [PATCH] chore: add .gitignore file to project The .gitignore file is added to the project to specify which files and directories should be ignored by Git. This helps to prevent unnecessary files from being tracked and committed to the repository. The .gitignore file includes a rule to ignore everything except for the .gitignore file itself and the .tmux.conf file. --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..865aac6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +# Ignore Everything +/* + +# Except for these files +!.gitignore +!/.tmux.conf