We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For beginners, a clear section instructing them what to track (and not track) in version control might be helpful. For comparison, poetry has this: https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control.
A "Working with version control" section under https://pdm.fming.dev/latest/usage/project/ recommending that you:
pyproject.toml
pdm.lock
.pdm.toml
.gitignore
The text was updated successfully, but these errors were encountered:
Suggested section in PR above. Umm'd and Ahh'd about the wording so feel free to critque/change. #1373
Sorry, something went wrong.
pdm init
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
For beginners, a clear section instructing them what to track (and not track) in version control might be helpful. For comparison, poetry has this: https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control.
Describe the solution you'd like
A "Working with version control" section under https://pdm.fming.dev/latest/usage/project/ recommending that you:
pyproject.toml
pdm.lock
so other devs can contribute to the project in an identical environment, so you can re-use that environment in CI, etc..pdm.toml
to your.gitignore
and don't commit it (I'm not actually sure about this—is it guaranteed to only contain machine-specific config?)The text was updated successfully, but these errors were encountered: