mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-27 19:53:33 +00:00
Update cheatsheets
This commit is contained in:
37
tldr/mise
Normal file
37
tldr/mise
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# mise
|
||||
|
||||
> Manage versions of different packages.
|
||||
> More information: <https://mise.jdx.dev>.
|
||||
|
||||
- List all available plugins:
|
||||
|
||||
`mise plugins list-all`
|
||||
|
||||
- Install a plugin:
|
||||
|
||||
`mise plugins add {{name}}`
|
||||
|
||||
- List runtime versions available for install:
|
||||
|
||||
`mise ls-remote {{name}}`
|
||||
|
||||
- Install a specific version of a package:
|
||||
|
||||
`mise install {{name}}@{{version}}`
|
||||
|
||||
- Set global version for a package:
|
||||
|
||||
`mise use --global {{name}}@{{version}}`
|
||||
|
||||
- Set local version for a package:
|
||||
|
||||
`mise use {{name}}@{{version}}`
|
||||
|
||||
- Set environment variable in configuration:
|
||||
|
||||
`mise set {{variable}}={{value}}`
|
||||
Reference in New Issue
Block a user