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/".
Press Submit to check your solution.
Back to lesson: Practice: Workflow workshop