...
Expand | ||||
---|---|---|---|---|
| ||||
Using VS Code
Using the Terminal
|
...
Destructive changes
Expand | ||
---|---|---|
| ||
|
Expand | ||
---|---|---|
| ||
|
...
Useful SFDX commands
Code Block |
---|
// validate multiple files using package.xml sfdx force:source:deploy -c -x manifest/package.xml -l NoTestRun // validate a single file sfdx force:source:deploy -c -p 'force-app\main\default\classes\SampleClass.cls' -l NoTestRun // retrieve multiple files using package.xml sfdx force:source:retrieve -x manifest/package.xml // retrieve a single file sfdx force:source:retrieve -p 'force-app\main\default\classes\SampleClass.cls' |
...