Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-19 00:20:57 +00:00
parent 83af6b3c72
commit c80d49f5d0
26 changed files with 464 additions and 13 deletions

33
tldr/conda-package Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# conda package
> Create low-level conda packages.
> More information: <https://docs.conda.io/projects/conda/en/stable/commands/package.html>.
- Get conda package from file:
`conda package {{[-w|--which]}} {{path/to/file}}`
- Remove all untracked files:
`conda package {{[-r|--reset}}`
- Display all untracked files:
`conda package {{[-u|--untracked]}}`
- Designate package name of the package being created:
`conda package --pkg-name {{name}}`
- Designate package version of the package being created:
`conda package --pkg-version {{version}}`
- Designate package build number of the package being created:
`conda package --pkg-build {{build_number}}`