-
Notifications
You must be signed in to change notification settings - Fork 0
fix: put Package.resolved into gitignore #57
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 |
|---|---|---|
|
|
@@ -6,4 +6,4 @@ DerivedData/ | |
| .swiftpm/configuration/registries.json | ||
| .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata | ||
| .netrc | ||
| **/Package.resolved | ||
| Package.resolved | ||
|
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. Bug: Root Directory Matching IssueThe pattern |
||
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.
Bug: Gitignore Regression: Package.resolved Files Not Ignored
The gitignore pattern was changed from
**/Package.resolvedtoPackage.resolved, which is a regression. The original pattern**/Package.resolvedmatches Package.resolved files at any directory level (recursively), while the new patternPackage.resolvedonly matches files at the root directory. This means Package.resolved files in subdirectories will no longer be ignored, allowing them to be accidentally committed.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.
we need only root