Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions KiCad.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,9 @@ fp-info-cache
# Archived Backups (KiCad 6.0)
**/*-backups/*.zip

# Archived Backups (KiCad 10.0)
Copy link

Copilot AI Jan 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment describes this as "Archived Backups" but based on the KiCad forum discussion linked in the PR, the .history folder is for internal history tracking, not archived backups. Consider updating the comment to more accurately describe this feature, such as "Internal history folder (KiCad 10.0)" or "History tracking folder (KiCad 10.0)".

Suggested change
# Archived Backups (KiCad 10.0)
# Internal history folder (KiCad 10.0)

Copilot uses AI. Check for mistakes.
.history/
Copy link

Copilot AI Jan 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pattern .history/ will only match a .history folder at the repository root level. If .history folders can exist in subdirectories (e.g., within project subfolders), this pattern should be **/.history/ to match at any directory level, consistent with the pattern used for KiCad 6.0 backups above (**/*-backups/*.zip).

Suggested change
.history/
**/.history/

Copilot uses AI. Check for mistakes.

# Local project settings
*.kicad_prl

Loading