commit aa8b471062cc019bc5cfeeb5257a676719ea79d9 Author: David Ibia Date: Mon Jan 15 16:25:42 2024 +0100 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. 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