-
Notifications
You must be signed in to change notification settings - Fork 514
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
Add .vscode to .gitignore #2291
Comments
shoaib-mohd
added a commit
to shoaib-mohd/sentry-python
that referenced
this issue
Aug 23, 2023
shoaib-mohd
added a commit
to shoaib-mohd/sentry-python
that referenced
this issue
Aug 23, 2023
shoaib-mohd
added a commit
to shoaib-mohd/sentry-python
that referenced
this issue
Aug 23, 2023
szokeasaurusrex
added a commit
that referenced
this issue
Sep 4, 2023
* + Add .vscode to .gitignore #2291 * + Add .vscode to .gitignore #2291 * + delete .vscode #2291 * Update .flake8 * Update .flake8 * Update config.yml * Update test-requirements.txt * Update init_serverless_sdk.py * Update build_aws_lambda_layer.py * Update LICENSE * Update LICENSE * Update dependabot.yml * Update LICENSE * Update .flake8 * Revert unwanted changes --------- Co-authored-by: Anton Pirker <[email protected]> Co-authored-by: Daniel Szoke <[email protected]>
sentrivana
pushed a commit
that referenced
this issue
Sep 18, 2023
* + Add .vscode to .gitignore #2291 * + Add .vscode to .gitignore #2291 * + delete .vscode #2291 * Update .flake8 * Update .flake8 * Update config.yml * Update test-requirements.txt * Update init_serverless_sdk.py * Update build_aws_lambda_layer.py * Update LICENSE * Update LICENSE * Update dependabot.yml * Update LICENSE * Update .flake8 * Revert unwanted changes --------- Co-authored-by: Anton Pirker <[email protected]> Co-authored-by: Daniel Szoke <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem Statement
The
.vscode
directory, which is used to store local VSCode configuration options, is being tracked by Git. Since my local settings differ from what is stored in the repo, I always need to make sure not to stage my.vscode
directory when commuting changes in Git. Since different developers may have different VSCode configurations, I don’t see any reason why we should be tracking this directory in our repo.Solution Brainstorm
Add the
.vscode
directory to.gitignore
. If we implement this change, we should probably also delete the.vscode
directory from the GitHub repo.The text was updated successfully, but these errors were encountered: