Lines Matching +full:- +full:- +full:update
1 .. _west-aliases:
20 .. code-block:: shell
22 west config alias.mylist "list -f '{name} {revision}'"
27 building more complex but easy-to-remember commands.
31 .. code-block:: shell
33 west config alias.update "update -o=--depth=1 -n"
37 Overriding/shadowing other or built-in commands is an advanced use case, it can lead to
38 strange side-effects and should be done with great care.
41 --------
46 .. code-block:: shell
48 west config --global alias.run "build --pristine=never --target run"
49 west config --global alias.menuconfig "build --pristine=never --target menuconfig"
53 .. code-block:: shell
55 west config alias.sample "build -b native_sim samples/hello_world -t run -- -DCONFIG_ASSERT=y"
57 Override ``west update`` to check a local cache:
59 .. code-block:: shell
61 west config alias.update "update --path-cache $HOME/.cache/zephyrproject"