Update cheatsheets

This commit is contained in:
ivuorinen
2024-07-11 00:15:37 +00:00
parent 090c38f352
commit 750a1b15d0
13 changed files with 285 additions and 14 deletions

25
tldr/pixi-task Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# pixi task
> Manage tasks in the project environment.
> More information: <https://pixi.sh/latest/reference/cli/#task>.
- Create a new task:
`pixi task add {{task_name}} {{task_command}}`
- List all tasks in the project:
`pixi task list`
- Remove a task:
`pixi task remove {{task_name}}`
- Create an alias for a task:
`pixi task alias {{alias_name}} {{task1 task2 ...}}`