Taskmaster Stubbing #2313
Reference in New Issue
Block a user
Delete Branch "taskmaster"
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 is primarily about getting the
.gitignorefile setup so that Taskmaster doesn't take over the repo.Bug: VSCode Ignore Rule Conflicts with Exceptions
Adding
.vscodeto.gitignoreconflicts with existing rules that ignore.vscode/*but make exceptions forextensions.jsonand.code-snippets. The new rule overrides these exceptions, causing the entire.vscodedirectory to be ignored and changing the intended version control behavior for these files..gitignore#L88-L8982aed5fdb9/.gitignore (L88-L89)Fix in Cursor
Bug: Trailing Space in `.gitignore` Causes Incorrect Matching
The
.gitignorepatterntasks/contains a trailing space, causing it to incorrectly match directories named "tasks " instead of the intended "tasks" directory. This makes the pattern ineffective at ignoring thetasksdirectory..gitignore#L98-L9982aed5fdb9/.gitignore (L98-L99)Fix in Cursor
Was this report helpful? Give feedback by reacting with 👍 or 👎