chore: stop tracking IntelliJ project files closes #28 #45
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: McPringle/fitpub#45
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/ignore-intellij-config"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR stops tracking IntelliJ IDEA project files and ignores the
.idea/directory going forward.Why
This repository is public, and sharing IDE project files causes unnecessary friction across different contributor setups. In practice,
.idea/contents are influenced by:Sharing IDEA configuration can work in controlled environments where everyone uses the same tooling and conventions. In a public open source repository, though, it tends to create more problems than it solves.
What changed
.idea/to.gitignore.idea/files from version controlThe cleanup was done as an index-level untracking step locally before commit creation. The goal is to stop versioning IDEA project files in the repository going forward.
Note
Contributors with existing clones should be aware that previously tracked
.idea/files may be removed from their working tree when they pull this change.