Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add namespaced deploy-retrieve examples #1026

Merged
merged 3 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions messages/deploy.metadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ To deploy multiple metadata components, either set multiple --metadata <name> fl

sf <%= command.id %> --metadata 'ApexClass:MyApex*' --ignore-warnings

- Deploy namespaced custom objects using a wildcard:
iowillhoit marked this conversation as resolved.
Show resolved Hide resolved

sf <%= command.id %> --metadata 'CustomObject:SBQQ__*'

- Deploy all custom objects and Apex classes found in all defined package directories (both examples are equivalent):

sf <%= command.id %> --metadata CustomObject ApexClass
Expand Down
4 changes: 4 additions & 0 deletions messages/retrieve.start.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ To retrieve multiple metadata components, either use multiple --metadata <name>

sf <%= command.id %> --metadata 'ApexClass:MyApex*'

- Retrieve namespaced custom objects using a wildcard:
iowillhoit marked this conversation as resolved.
Show resolved Hide resolved

sf <%= command.id %> --metadata 'CustomObject:SBQQ__*'

- Retrieve all custom objects and Apex classes found in all defined package directories (both examples are equivalent):

sf <%= command.id %> --metadata CustomObject ApexClass
Expand Down
Loading