mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
796 B
Plaintext
30 lines
796 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# sfdk deploy
|
|
|
|
> Deploy build results to a device.
|
|
> More information: <https://github.com/sailfishos/sailfish-qtcreator/blob/master/share/qtcreator/sfdk/modules/50-testing-mb2/doc/command.deploy.adoc>.
|
|
|
|
- Deploy using a specified method (`pkcon`, `rsync`, `sdk`, `zypper`, `zypper-dup`, or `manual`):
|
|
|
|
`sfdk deploy --{{method}}`
|
|
|
|
- Preview deploy without applying the changes:
|
|
|
|
`sfdk deploy --{{method}} {{[-n|--dry-run]}}`
|
|
|
|
- Deploy files in glob pattern `package*`:
|
|
|
|
`sfdk deploy --{{method}} "+package*"`
|
|
|
|
- Deploy all files excluding `ignore*`:
|
|
|
|
`sfdk deploy --{{method}} "-ignore*"`
|
|
|
|
- Undeploy using a specified method (`pkcon`, `rpm`, `rsync`, `sdk`, or `zypper`):
|
|
|
|
`sfdk undeploy --{{method}}`
|