MarkGotham / When-in-Rome

meta-corpus of and code library for the functional harmonic analysis of music
58 stars 12 forks source link

Adding a gitignore #18

Closed napulen closed 3 years ago

napulen commented 3 years ago

Maybe there are other temporary files that can be conveniently ignored in version control (e.g., MuseScore temporary files, other python temporary files, etc.).

However, one that is particularly present at the time is the __pycache__ generated after running code within the Code/ folder. This __pycache__ should not be committed to version history and shouldn't give the impression of changes to the repo when it is created automatically.

This commit pushes a gitignore file to ignore the __pycache__.

MarkGotham commented 3 years ago

Good call! We should definitely promote this and any other files that everyone we'll all want to ignore up to a new, shared gitignore.

Any other candidates?

napulen commented 3 years ago

Yes to hidden files and yes to PDFs too (probably). Thanks for merging.