CodeCrafters CLI error running tests

@kravlad Ah, the issue was caused by this:

⛳ globalGitIgnore path: /Users/aurora/configs/gitignore
⛳ globalGitIgnore content:
.git
*.git

Those patterns are a bit unusual since Git treats .git/ specially, and it ends up interfering with our CLI, which relies on the .git/ directory being present to interact with the repository correctly.

Removing these lines from your global gitignore should resolve the issue. Let me know how it goes!