I'm trying to create the .gitignore file for an Altium project that is versioned with git and stored remotely on GitHub.
I don't want my teammates to continually struggle with having to update every single time I make a small change, like re-run design rule checks or re-compile the project. What are the minimum files I should I add to my version control system?
# Ignore the subdirectory where output job outputs are placed GeneratedOutput # Ignore autosave files (anything that begins with a tilde) ~* # What else to ignore?