You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,13 @@
2
2
3
3
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
* minor updates to the --help ([#85](https://github.com/salesforcecli/plugin-deploy-retrieve/issues/85)) ([a7cf8bd](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/a7cf8bd77b9bc35f72c20b11010ae3855203f9b2))
Copy file name to clipboardExpand all lines: README.md
+13-8Lines changed: 13 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ sf plugins
65
65
66
66
## `sf deploy`
67
67
68
-
The command first analyzes your project, active or logged-into environments, and local defaults to determine what to deploy and where. The command then prompts you for information about this particular deployment and provides intelligent choices based on its analysis.
68
+
This command must be run from within a project.
69
69
70
70
```
71
71
USAGE
@@ -75,25 +75,30 @@ OPTIONS
75
75
--interactive
76
76
77
77
DESCRIPTION
78
-
For example, if your local project contains a package directory with metadata source files, the command asks if you
79
-
want to deploy that Salesforce app to an org. The command lists your connected orgs and asks which one you want to
80
-
deploy to. If the command finds Apex tests, it asks if you want to run them and at which level.
78
+
The command first analyzes your project, your active or logged-into environments, and local defaults to determine what
79
+
to deploy and where to deploy it. The command then prompts you for information about this particular deployment and
80
+
provides intelligent choices based on its analysis.
81
+
82
+
For example, if your local project contains a source directory with metadata files in source format, the command asks
83
+
if you want to deploy that Salesforce app to an org. The command lists your connected orgs and asks which one you want
84
+
to deploy to. If the command finds Apex tests, it asks if you want to run them and at which level.
81
85
82
86
Similarly, if the command finds a local functions directory, the command prompts if you want to deploy it and to which
83
87
compute environment. The command prompts and connects you to a compute environment of your choice if you’re not
84
88
currently connected to any.
85
89
86
-
This command must be run from within a project.
87
-
88
90
The command stores your responses in a local file and uses them as defaults when you rerun the command. Specify
89
91
--interactive to force the command to reprompt.
90
92
91
93
Use this command for quick and simple deploys. For more complicated deployments, use the environment-specific
92
94
commands, such as "sf project deploy org", that provide additional flags.
93
95
94
-
EXAMPLE
96
+
EXAMPLES
97
+
Deploy a project and use stored values from a previous command run:
0 commit comments