generated from salesforcecli/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
SF-CLI-BOT
committed
May 20, 2022
1 parent
fffb612
commit ea47c05
Showing
3 changed files
with
24 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,7 +113,7 @@ EXAMPLES | |
$ sfdx force:org:shape:create -u [email protected] --json --loglevel debug | ||
``` | ||
|
||
_See code: [src/commands/force/org/shape/create.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.0/src/commands/force/org/shape/create.ts)_ | ||
_See code: [src/commands/force/org/shape/create.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/shape/create.ts)_ | ||
|
||
## `sfdx force:org:shape:delete [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]` | ||
|
||
|
@@ -147,7 +147,7 @@ EXAMPLES | |
$ sfdx force:org:shape:delete -u [email protected] -p --json > tmp/MyOrgShapeDelete.json | ||
``` | ||
|
||
_See code: [src/commands/force/org/shape/delete.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.0/src/commands/force/org/shape/delete.ts)_ | ||
_See code: [src/commands/force/org/shape/delete.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/shape/delete.ts)_ | ||
|
||
## `sfdx force:org:shape:list [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]` | ||
|
||
|
@@ -176,7 +176,7 @@ EXAMPLES | |
$ sfdx force:org:shape:list --json > tmp/MyOrgShapeList.json | ||
``` | ||
|
||
_See code: [src/commands/force/org/shape/list.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.0/src/commands/force/org/shape/list.ts)_ | ||
_See code: [src/commands/force/org/shape/list.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/shape/list.ts)_ | ||
|
||
## `sfdx force:org:snapshot:create -o <string> -n <string> [-d <string>] [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]` | ||
|
||
|
@@ -215,20 +215,14 @@ DESCRIPTION | |
EXAMPLES | ||
Create a snapshot called "Dependencies" using the source scratch org ID: | ||
sfdx force:org:snapshot:create --sourceorg 00Dxx0000000000 --snapshotname Dependencies --description 'Contains PackageA v1.1.0' | ||
$ sfdx force:org:snapshot:create --sourceorg 00Dxx0000000000 --snapshotname Dependencies --description 'Contains PackageA v1.1.0' | ||
Create a snapshot called "NightlyBranch" using the source scratch org username: | ||
sfdx force:org:snapshot:create -o myuser@myorg -n NightlyBranch -d 'Contains PkgA v2.1.0 and PkgB 3.3.0' | ||
$ sfdx force:org:snapshot:create -o myuser@myorg -n NightlyBranch -d 'Contains PkgA v2.1.0 and PkgB 3.3.0' | ||
``` | ||
|
||
_See code: [src/commands/force/org/snapshot/create.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.0/src/commands/force/org/snapshot/create.ts)_ | ||
_See code: [src/commands/force/org/snapshot/create.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/snapshot/create.ts)_ | ||
|
||
## `sfdx force:org:snapshot:delete -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]` | ||
|
||
|
@@ -259,20 +253,14 @@ DESCRIPTION | |
EXAMPLES | ||
Delete a snapshot from the default Dev Hub using the snapshot ID: | ||
sfdx force:org:snapshot:delete --snapshot 0Oo... | ||
$ sfdx force:org:snapshot:delete --snapshot 0Oo... | ||
Delete a snapshot from the specified Dev Hub using the snapshot name: | ||
sfdx force:org:snapshot:delete -s BaseSnapshot -v SnapshotDevHub | ||
$ sfdx force:org:snapshot:delete -s BaseSnapshot -v SnapshotDevHub | ||
``` | ||
|
||
_See code: [src/commands/force/org/snapshot/delete.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.0/src/commands/force/org/snapshot/delete.ts)_ | ||
_See code: [src/commands/force/org/snapshot/delete.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/snapshot/delete.ts)_ | ||
|
||
## `sfdx force:org:snapshot:get -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]` | ||
|
||
|
@@ -306,20 +294,14 @@ DESCRIPTION | |
EXAMPLES | ||
Get snapshot details using its ID: | ||
sfdx force:org:snapshot:get --snapshot 0Oo... | ||
$ sfdx force:org:snapshot:get --snapshot 0Oo... | ||
Get snapshot details using its name: | ||
sfdx force:org:snapshot:get -s Dependencies | ||
$ sfdx force:org:snapshot:get -s Dependencies | ||
``` | ||
|
||
_See code: [src/commands/force/org/snapshot/get.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.0/src/commands/force/org/snapshot/get.ts)_ | ||
_See code: [src/commands/force/org/snapshot/get.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/snapshot/get.ts)_ | ||
|
||
## `sfdx force:org:snapshot:list [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]` | ||
|
||
|
@@ -352,19 +334,13 @@ DESCRIPTION | |
EXAMPLES | ||
List snapshots in the default Dev Hub: | ||
sfdx force:org:snapshot:list | ||
$ sfdx force:org:snapshot:list | ||
List snapshots in the Dev Hub with the specified username: | ||
sfdx force:org:snapshot:list -v [email protected] | ||
$ sfdx force:org:snapshot:list -v [email protected] | ||
``` | ||
|
||
_See code: [src/commands/force/org/snapshot/list.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.0/src/commands/force/org/snapshot/list.ts)_ | ||
_See code: [src/commands/force/org/snapshot/list.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/snapshot/list.ts)_ | ||
|
||
<!-- commandsstop --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters