Skip to main content

Practice ยท 3 of 4

.gitignore semantics

CHALLENGE
Difficulty: beginner+25 XP

Implement static bool IsIgnored(string path, List<string> rules) โ€” rules like "bin/" (directory prefix), "*.log" (extension wildcard), or exact names; earlier rules win, and any rule starting with "!" un-ignores. Path matches "bin/" when the path starts with "bin/".

Back to lesson: Practice: Workflow workshop