-
Notifications
You must be signed in to change notification settings - Fork 2
Add uv.lock to .gitignore #397
Copy link
Copy link
Open
Labels
configConfiguration system issuesConfiguration system issueseffort-smallSmall effort: <2 hoursSmall effort: <2 hoursgood first issueGood for newcomersGood for newcomersimpact-lowLow impact on users or systemLow impact on users or systemtechnical-debtCode that needs refactoringCode that needs refactoring
Metadata
Metadata
Assignees
Labels
configConfiguration system issuesConfiguration system issueseffort-smallSmall effort: <2 hoursSmall effort: <2 hoursgood first issueGood for newcomersGood for newcomersimpact-lowLow impact on users or systemLow impact on users or systemtechnical-debtCode that needs refactoringCode that needs refactoring
Problem
The
uv.lockfile is not in.gitignoreand is showing up as an untracked file in worktrees.Context
uv.lockis not committed in mainuv.lockis not in.gitignorePer UV best practices:
Since this project doesn't currently commit the lockfile, we should add it to
.gitignorefor consistency.Solution
Add to
.gitignore:Alternative
If reproducible builds are desired, commit
uv.lockinstead of gitignoring it. This would require generating and committing the lockfile.