Skip to content

Commit

Permalink
Merge branch 'main' into sm/org-open
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc authored Jan 27, 2021
2 parents dfc6b20 + e82e667 commit 6c63000
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 20 deletions.
25 changes: 12 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ sfdx plugins

## `sfdx force:org:display [-v <string>] [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`

get the description for the current or target org.
get the description for the current or target org

```
USAGE
Expand Down Expand Up @@ -124,39 +124,38 @@ EXAMPLES
sfdx force:org:display -u TestOrg1 --json > tmp/MyOrgDesc.json
```

_See code: [src/commands/force/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/v1.1.1/src/commands/force/org/display.ts)_
_See code: [src/commands/force/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/v1.1.0/src/commands/force/org/display.ts)_

## `sfdx force:org:list [--all] [-p --clean] [--skipconnectionstatus] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`

list all orgs that the Salesforce CLI has created or authenticated to
list all orgs you’ve created or authenticated to

```
USAGE
$ sfdx force:org:list [--all] [-p --clean] [--skipconnectionstatus] [--verbose] [--json] [--loglevel
trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
OPTIONS
-p, --noprompt Do not prompt for confirmation.
-p, --noprompt do not prompt for confirmation
--all Lists all authenticated orgs,
including expired, deleted, and
unknown-status scratch orgs.
--all include expired, deleted, and
unknown-status scratch orgs
--clean Remove all local org authorizations
for deleted or expired orgs.
--clean remove all local org authorizations
for non-active orgs
--json format output as json
--loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
this command invocation
--skipconnectionstatus Skips retrieving the connection
--skipconnectionstatus skips retrieving the connection
status of non-scratch orgs
--verbose Lists more information about each
org.
--verbose list more information about each
org'
```

_See code: [src/commands/force/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/v1.1.1/src/commands/force/org/list.ts)_
_See code: [src/commands/force/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/v1.1.0/src/commands/force/org/list.ts)_

<!-- commandsstop -->
2 changes: 1 addition & 1 deletion messages/display.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"description": "get the description for the current or target org.\nOutput includes your access token, client Id, connected status, org ID, instance URL, username, and alias, if applicable.\nUse --verbose to include the SFDX auth URL.\nIncluding --verbose displays the sfdxAuthUrl property only if you authenticated to the org using auth:web:login (not auth:jwt:grant)",
"description": "get the description for the current or target org\nOutput includes your access token, client Id, connected status, org ID, instance URL, username, and alias, if applicable.\nUse --verbose to include the SFDX auth URL.\nIncluding --verbose displays the sfdxAuthUrl property only if you authenticated to the org using auth:web:login (not auth:jwt:grant)",
"examples": [
"sfdx force:org:display",
"sfdx force:org:display -u [email protected]",
Expand Down
12 changes: 6 additions & 6 deletions messages/list.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"description": "list all orgs that the Salesforce CLI has created or authenticated to",
"description": "list all orgs you’ve created or authenticated to",
"examples": [
"sfdx force:org:list",
"sfdx force:org:list --verbose --json",
"sfdx force:org:list --verbose --json > tmp/MyOrgList.json"
],

"verbose": "Lists more information about each org.",
"all": "Lists all authenticated orgs, including expired, deleted, and unknown-status scratch orgs.",
"clean": "Remove all local org authorizations for deleted or expired orgs.",
"noPrompt": "Do not prompt for confirmation.",
"skipConnectionStatus": "Skips retrieving the connection status of non-scratch orgs",
"verbose": "list more information about each org'",
"all": "include expired, deleted, and unknown-status scratch orgs",
"clean": "remove all local org authorizations for non-active orgs",
"noPrompt": "do not prompt for confirmation",
"skipConnectionStatus": "skips retrieving the connection status of non-scratch orgs",

"prompt": "Found (%s) org configurations to delete. Are you sure (yes/no)?",
"noActiveScratchOrgs": "No active scratch orgs found. Specify --all to see all scratch orgs",
Expand Down

0 comments on commit 6c63000

Please sign in to comment.