chore(blame): unignore checked in .vscode/ files#7592
Merged
Conversation
Contributor
Greptile SummaryAdds gitignore negation rules to explicitly track three VSCode configuration files ( Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant Git as Git
participant Repo as Repository
Note over Dev,Repo: Before: .vscode directory fully ignored
Dev->>Git: Commit .vscode/env_template.txt
Git-->>Dev: File ignored (not tracked)
Note over Dev,Repo: After: Specific files exempted from ignore
Dev->>Git: Update .gitignore with negation rules
Git->>Repo: Track .gitignore changes
Dev->>Git: Commit .vscode/env_template.txt
Git->>Repo: Track file (exempted from ignore)
Dev->>Git: Commit .vscode/launch.json
Git->>Repo: Track file (exempted from ignore)
Dev->>Git: Commit .vscode/tasks.template.jsonc
Git->>Repo: Track file (exempted from ignore)
Dev->>Git: Add .vscode/settings.json
Git-->>Dev: File still ignored (not exempted)
|
Danelegend
pushed a commit
that referenced
this pull request
Jan 20, 2026
jessicasingh7
pushed a commit
that referenced
this pull request
Jan 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This files are versioned, so we shouldn't ignore them. Keep the rest of the directory ignored by default.
How Has This Been Tested?
Additional Options
Summary by cubic
Update .gitignore to track .vscode/env_template.txt, .vscode/launch.json, and .vscode/tasks.template.jsonc while keeping the rest of .vscode ignored. Ensures shared VS Code config stays versioned for consistent local setup and debugging.
Written for commit 7d53765. Summary will update on new commits.