Lines Matching refs:alias
6 West allows to add alias commands to the local, global or system configuration files.
10 Similar to how ``git`` aliases work, the alias command is replaced with the alias'
18 To add a new alias simply call the ``west config`` command:
22 west config alias.mylist "list -f '{name} {revision}'"
26 Recursive aliases are allowed as an alias command can contain other aliases, effectively
33 west config alias.update "update -o=--depth=1 -n"
48 west config --global alias.run "build --pristine=never --target run"
49 west config --global alias.menuconfig "build --pristine=never --target menuconfig"
51 Create an alias for the sample you are actively developing with additional options:
55 west config alias.sample "build -b native_sim samples/hello_world -t run -- -DCONFIG_ASSERT=y"
61 west config alias.update "update --path-cache $HOME/.cache/zephyrproject"