Calmcode - setup: gitignore

Gitignore

1 2 3 4 5 6 7 8 9

We want our git repository to remain clean and simple. To make sure that we don't accidentally add files that we're not interested in we should add some lines to our .gitignore file.

# Ignore Notebooks
*.ipynb

# Ignore VS Code Settings
.vscode/

Jupyter notebooks in the root directory will now be ignored just like any settings from .vscode.