Recently I found out about the importance of git and therefor started to experiment with it, however I ran into some problems when trying to implement it in a python project on boids. The project directory looks like this:
Boids/
├─ .venv/
│ ├─ ...
├─ .vscode/
│ ├─ ...
├─ __pycache__/
│ ├─ ...
├─ main.py
├─ boid.py
I don't think I want to track everything that happens in the .venv, .vscode and __pycache__ folders through git (right?). Does anyone know how I could arrange this? Also, when uploading the project to GitHub through git Bash, should I include these folders there too? If so, does this work as I guess I would have .gititgnore files in the named folders.
Any help would be appreciated.