-
Notifications
You must be signed in to change notification settings - Fork 96
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
Update .gitignore #184
Update .gitignore #184
Conversation
Can you describe the steps and better describe (error messages, if any) that cause this issue? Generally speaking you want to lock the dependencies for the component libraries as obviously any new untested release versions could cause issues. It's the equivalent of requirements.txt in python or package-lock.json in node. |
ran into this today so I had to delete dependencies.lock to pull a new version without other git intervention |
I'm generally not a fan of keeping auto-generated files under version control, as it frequently causes conflicts, but like @kristiankielhofner mentions, this is considered best practice. Same with Cargo.lock for rust projects. |
We could however do something like I've done here: https://codeberg.org/stintel/auditd-forwarder/commit/252e208e5f4af3b641a62ddd2ceb36e8dd59398d |
add dependencies.lock to ignore list to allow git pulls
Rebased to trigger the CI failure on PRs from forks. Working on a fix for that. |
add dependencies.lock to ignore list to allow git pulls