Skip to Content
Last repository update 9/10/2025 🎉
DocsTaskfileTask Aliases

Task Aliases

You can create aliases for tasks in Taskfile to simplify command execution. This allows you to define shorter or more intuitive names for tasks, making it easier to run them.

Taskfile.yaml
version: '3' tasks: complex-task-name: aliases: [complex] cmds: - echo "This is a complex task name"
Last updated on