-
Notifications
You must be signed in to change notification settings - Fork 5
[chore] chore: remove planning files from git tracking #69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -147,9 +147,17 @@ venv.bak/ | |
|
|
||
| # mkdocs documentation | ||
| /site | ||
|
|
||
| # Planning files (created by planning-with-files skill) | ||
| /task_plan.md | ||
| /findings.md | ||
| /progress.md | ||
| task_plan.md | ||
| findings.md | ||
| progress.md | ||
| **/task_plan.md | ||
| **/findings.md | ||
| **/progress.md | ||
|
Comment on lines
+158
to
+160
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: # First, check the exact .gitignore content around lines 158-160
sed -n '150,165p' .gitignoreRepository: Wangmerlyn/KeepGPU Length of output: 285 🏁 Script executed: # Check if docs/plans directory exists and what files are in it
find docs/plans -type f -name "*.md" 2>/dev/null | head -20Repository: Wangmerlyn/KeepGPU Length of output: 44 🏁 Script executed: # Run the verification script from the review comment
git check-ignore -v docs/plans/cli-service-dashboard/task_plan.md \
docs/plans/cli-service-dashboard/findings.md \
docs/plans/cli-service-dashboard/progress.md 2>&1 || echo "Files not ignored or directory/files do not exist"Repository: Wangmerlyn/KeepGPU Length of output: 288 These recursive ignore rules suppress required The patterns Suggested patch # Planning files (created by planning-with-files skill)
-/task_plan.md
-/findings.md
-/progress.md
-task_plan.md
-findings.md
-progress.md
-**/task_plan.md
-**/findings.md
-**/progress.md
+task_plan.md
+findings.md
+progress.md
+!docs/plans/**/task_plan.md
+!docs/plans/**/findings.md
+!docs/plans/**/progress.md🤖 Prompt for AI Agents
Comment on lines
152
to
+160
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| # mypy | ||
| .mypy_cache/ | ||
|
|
||
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are multiple redundant patterns to ignore the planning files. The
**/<filename>pattern is sufficient to ignore files with that name in any directory, making the other patterns for the same files unnecessary. This can be simplified for better clarity and maintainability.