@salesforce/plugin-deploy-retrieve 1.8.3 → 1.8.5-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commands/deploy.d.ts +5 -0
- package/lib/commands/deploy.js +5 -0
- package/lib/commands/deploy.js.map +1 -1
- package/lib/commands/project/convert/mdapi.d.ts +32 -0
- package/lib/commands/project/convert/mdapi.js +173 -0
- package/lib/commands/project/convert/mdapi.js.map +1 -0
- package/lib/commands/project/convert/source.d.ts +29 -0
- package/lib/commands/project/convert/source.js +141 -0
- package/lib/commands/project/convert/source.js.map +1 -0
- package/lib/commands/project/delete/source.d.ts +69 -0
- package/lib/commands/project/delete/source.js +423 -0
- package/lib/commands/project/delete/source.js.map +1 -0
- package/lib/commands/project/delete/tracking.d.ts +19 -0
- package/lib/commands/project/delete/tracking.js +49 -0
- package/lib/commands/project/delete/tracking.js.map +1 -0
- package/lib/commands/{deploy/metadata → project/deploy}/cancel.d.ts +2 -0
- package/lib/commands/{deploy/metadata → project/deploy}/cancel.js +13 -3
- package/lib/commands/project/deploy/cancel.js.map +1 -0
- package/lib/commands/{deploy/metadata → project/deploy}/preview.d.ts +3 -0
- package/lib/commands/{deploy/metadata → project/deploy}/preview.js +9 -3
- package/lib/commands/project/deploy/preview.js.map +1 -0
- package/lib/commands/{deploy/metadata → project/deploy}/quick.d.ts +3 -0
- package/lib/commands/{deploy/metadata → project/deploy}/quick.js +10 -4
- package/lib/commands/project/deploy/quick.js.map +1 -0
- package/lib/commands/project/deploy/report.d.ts +22 -0
- package/lib/commands/{deploy/metadata → project/deploy}/report.js +25 -4
- package/lib/commands/project/deploy/report.js.map +1 -0
- package/lib/commands/{deploy/metadata → project/deploy}/resume.d.ts +5 -0
- package/lib/commands/{deploy/metadata → project/deploy}/resume.js +17 -2
- package/lib/commands/project/deploy/resume.js.map +1 -0
- package/lib/commands/{deploy/metadata.d.ts → project/deploy/start.d.ts} +10 -2
- package/lib/commands/{deploy/metadata.js → project/deploy/start.js} +40 -11
- package/lib/commands/project/deploy/start.js.map +1 -0
- package/lib/commands/{deploy/metadata → project/deploy}/validate.d.ts +2 -0
- package/lib/commands/{deploy/metadata → project/deploy}/validate.js +4 -4
- package/lib/commands/project/deploy/validate.js.map +1 -0
- package/lib/commands/project/manifest/create.d.ts +26 -0
- package/lib/commands/project/manifest/create.js +133 -0
- package/lib/commands/project/manifest/create.js.map +1 -0
- package/lib/commands/project/reset/tracking.d.ts +21 -0
- package/lib/commands/project/reset/tracking.js +64 -0
- package/lib/commands/project/reset/tracking.js.map +1 -0
- package/lib/commands/{retrieve/metadata → project/retrieve}/preview.d.ts +2 -0
- package/lib/commands/{retrieve/metadata → project/retrieve}/preview.js +2 -0
- package/lib/commands/project/retrieve/preview.js.map +1 -0
- package/lib/commands/{retrieve/metadata.d.ts → project/retrieve/start.d.ts} +3 -1
- package/lib/commands/{retrieve/metadata.js → project/retrieve/start.js} +8 -6
- package/lib/commands/project/retrieve/start.js.map +1 -0
- package/lib/utils/coverage.d.ts +6 -0
- package/lib/utils/coverage.js +86 -0
- package/lib/utils/coverage.js.map +1 -0
- package/lib/utils/deploy.d.ts +9 -5
- package/lib/utils/deploy.js +21 -24
- package/lib/utils/deploy.js.map +1 -1
- package/lib/utils/deployCache.d.ts +8 -2
- package/lib/utils/deployCache.js +11 -2
- package/lib/utils/deployCache.js.map +1 -1
- package/lib/utils/flags.js +1 -5
- package/lib/utils/flags.js.map +1 -1
- package/lib/utils/manifestCache.d.ts +5 -0
- package/lib/utils/manifestCache.js +38 -0
- package/lib/utils/manifestCache.js.map +1 -0
- package/lib/utils/metadataDeployer.js +1 -0
- package/lib/utils/metadataDeployer.js.map +1 -1
- package/lib/utils/output.d.ts +42 -2
- package/lib/utils/output.js +217 -12
- package/lib/utils/output.js.map +1 -1
- package/lib/utils/previewOutput.d.ts +2 -1
- package/lib/utils/previewOutput.js +14 -22
- package/lib/utils/previewOutput.js.map +1 -1
- package/lib/utils/types.d.ts +35 -0
- package/lib/utils/types.js +3 -1
- package/lib/utils/types.js.map +1 -1
- package/messages/convert.mdapi.md +78 -0
- package/messages/convert.source.md +64 -0
- package/messages/delete.source.md +122 -0
- package/messages/delete.tracking.md +34 -0
- package/messages/deploy.async.md +3 -3
- package/messages/deploy.md +5 -1
- package/messages/deploy.metadata.cancel.md +10 -6
- package/messages/deploy.metadata.md +33 -5
- package/messages/deploy.metadata.preview.md +7 -3
- package/messages/deploy.metadata.quick.md +11 -3
- package/messages/deploy.metadata.report.md +24 -4
- package/messages/deploy.metadata.resume.md +17 -5
- package/messages/deploy.metadata.validate.md +9 -5
- package/messages/manifest.create.md +61 -0
- package/messages/retrieve.metadata.md +1 -1
- package/messages/retrieve.metadata.preview.md +3 -3
- package/oclif.manifest.json +1673 -665
- package/package.json +45 -32
- package/schemas/project-convert-mdapi.json +29 -0
- package/schemas/project-delete-source.json +609 -0
- package/schemas/project-delete-tracking.json +19 -0
- package/schemas/project-manifest-create.json +19 -0
- package/schemas/project-reset-tracking.json +19 -0
- package/lib/commands/deploy/metadata/cancel.js.map +0 -1
- package/lib/commands/deploy/metadata/preview.js.map +0 -1
- package/lib/commands/deploy/metadata/quick.js.map +0 -1
- package/lib/commands/deploy/metadata/report.d.ts +0 -14
- package/lib/commands/deploy/metadata/report.js.map +0 -1
- package/lib/commands/deploy/metadata/resume.js.map +0 -1
- package/lib/commands/deploy/metadata/validate.js.map +0 -1
- package/lib/commands/deploy/metadata.js.map +0 -1
- package/lib/commands/retrieve/metadata/preview.js.map +0 -1
- package/lib/commands/retrieve/metadata.js.map +0 -1
- /package/schemas/{deploy-metadata-cancel.json → project-deploy-cancel.json} +0 -0
- /package/schemas/{deploy-metadata-preview.json → project-deploy-preview.json} +0 -0
- /package/schemas/{deploy-metadata-quick.json → project-deploy-quick.json} +0 -0
- /package/schemas/{deploy-metadata-report.json → project-deploy-report.json} +0 -0
- /package/schemas/{deploy-metadata-resume.json → project-deploy-resume.json} +0 -0
- /package/schemas/{deploy-metadata-validate.json → project-deploy-start.json} +0 -0
- /package/schemas/{deploy-metadata.json → project-deploy-validate.json} +0 -0
- /package/schemas/{retrieve-metadata-preview.json → project-retrieve-preview.json} +0 -0
- /package/schemas/{retrieve-metadata.json → project-retrieve-start.json} +0 -0
|
@@ -6,7 +6,7 @@ Preview a deployment to see what will deploy to the org, the potential conflicts
|
|
|
6
6
|
|
|
7
7
|
You must run this command from within a project.
|
|
8
8
|
|
|
9
|
-
The command outputs a table that describes what will happen if you run the "
|
|
9
|
+
The command outputs a table that describes what will happen if you run the "<%= config.bin %> project deploy start" command. The table lists the metadata components that will be deployed and deleted. The table also lists the current conflicts between files in your local project and components in the org. Finally, the table lists the files that won't be deployed because they're included in your .forceignore file.
|
|
10
10
|
|
|
11
11
|
If your org allows source tracking, then this command considers conflicts between the org and local. Some orgs, such as production orgs, never allow source tracking. Use the "--no-track-source" flag when you create a scratch or sandbox org to disable source tracking.
|
|
12
12
|
|
|
@@ -14,7 +14,7 @@ To preview the deployment of multiple metadata components, either set multiple -
|
|
|
14
14
|
|
|
15
15
|
# examples
|
|
16
16
|
|
|
17
|
-
- NOTE: The commands to preview a deployment and actually deploy it use similar flags. We provide a few preview examples here, but see the help for "
|
|
17
|
+
- NOTE: The commands to preview a deployment and actually deploy it use similar flags. We provide a few preview examples here, but see the help for "<%= config.bin %> project deploy start" for more examples that you can adapt for previewing.
|
|
18
18
|
|
|
19
19
|
- Preview the deployment of source files in a directory, such as force-app:
|
|
20
20
|
|
|
@@ -36,6 +36,10 @@ To preview the deployment of multiple metadata components, either set multiple -
|
|
|
36
36
|
|
|
37
37
|
Login username or alias for the target org.
|
|
38
38
|
|
|
39
|
+
# flags.only-ignored.summary
|
|
40
|
+
|
|
41
|
+
Preview files to be ignored in a deployment.
|
|
42
|
+
|
|
39
43
|
# flags.target-org.description
|
|
40
44
|
|
|
41
45
|
Overrides your default org.
|
|
@@ -90,4 +94,4 @@ There are changes in the org that conflict with the local changes you're trying
|
|
|
90
94
|
|
|
91
95
|
- To overwrite the remote changes, rerun this command with the --ignore-conflicts flag.
|
|
92
96
|
|
|
93
|
-
- To overwrite the local changes, run the "sf retrieve
|
|
97
|
+
- To overwrite the local changes, run the "sf project retrieve start" command with the --ignore-conflicts flag.
|
|
@@ -4,7 +4,7 @@ Quickly deploy a validated deployment to an org.
|
|
|
4
4
|
|
|
5
5
|
# description
|
|
6
6
|
|
|
7
|
-
Before you run this command, first create a validated deployment with the "
|
|
7
|
+
Before you run this command, first create a validated deployment with the "<%= config.bin %> project deploy validate" command, which returns a job ID. Validated deployments haven't been deployed to the org yet; you deploy them with this command. Either pass the job ID to this command or use the --use-most-recent flag to use the job ID of the most recently validated deployment. For the quick deploy to succeed, the associated validated deployment must also have succeeded.
|
|
8
8
|
|
|
9
9
|
Executing this quick deploy command takes less time than a standard deploy because it skips running Apex tests. These tests were previously run as part of the validation. Validating first and then running a quick deploy is useful if the deployment to your production org take several hours and you don’t want to risk a failed deploy.
|
|
10
10
|
|
|
@@ -36,13 +36,21 @@ Use the job ID of the most recently validated deployment.
|
|
|
36
36
|
|
|
37
37
|
For performance reasons, this flag uses only job IDs that were validated in the past 3 days or less. If your most recent deployment validation was more than 3 days ago, this flag won't find a job ID.
|
|
38
38
|
|
|
39
|
+
# flags.api-version.summary
|
|
40
|
+
|
|
41
|
+
Target API version for the deploy.
|
|
42
|
+
|
|
43
|
+
# flags.api-version.description
|
|
44
|
+
|
|
45
|
+
Use this flag to override the default API version with the API version of your package.xml file. The default API version is the latest version supported by the CLI.
|
|
46
|
+
|
|
39
47
|
# flags.wait.summary
|
|
40
48
|
|
|
41
49
|
Number of minutes to wait for the command to complete and display results.
|
|
42
50
|
|
|
43
51
|
# flags.wait.description
|
|
44
52
|
|
|
45
|
-
If the command continues to run after the wait period, the CLI returns control of the terminal window to you. To resume watching the deploy, run "
|
|
53
|
+
If the command continues to run after the wait period, the CLI returns control of the terminal window to you. To resume watching the deploy, run "<%= config.bin %> project deploy resume". To check the status of the deploy, run "<%= config.bin %> project deploy report".
|
|
46
54
|
|
|
47
55
|
# flags.verbose.summary
|
|
48
56
|
|
|
@@ -58,7 +66,7 @@ Run the command asynchronously.
|
|
|
58
66
|
|
|
59
67
|
# flags.async.description
|
|
60
68
|
|
|
61
|
-
The command immediately returns the control of the terminal to you. This way, you can continue to use the CLI. To resume watching the deploy, run "
|
|
69
|
+
The command immediately returns the control of the terminal to you. This way, you can continue to use the CLI. To resume watching the deploy, run "<%= config.bin %> project deploy resume". To check the status of the deploy, run "<%= config.bin %> project deploy report".
|
|
62
70
|
|
|
63
71
|
# flags.target-org.summary
|
|
64
72
|
|
|
@@ -18,6 +18,14 @@ Run this command by either passing it a job ID or specifying the --use-most-rece
|
|
|
18
18
|
|
|
19
19
|
<%= config.bin %> <%= command.id %> --use-most-recent
|
|
20
20
|
|
|
21
|
+
# flags.target-org.summary
|
|
22
|
+
|
|
23
|
+
Login username or alias for the target org.
|
|
24
|
+
|
|
25
|
+
# flags.api-version.summary
|
|
26
|
+
|
|
27
|
+
API version to use
|
|
28
|
+
|
|
21
29
|
# flags.job-id.summary
|
|
22
30
|
|
|
23
31
|
Job ID of the deploy operation you want to check the status of.
|
|
@@ -26,10 +34,10 @@ Job ID of the deploy operation you want to check the status of.
|
|
|
26
34
|
|
|
27
35
|
These commands return a job ID if they time out or you specified the --async flag:
|
|
28
36
|
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
37
|
+
- <%= config.bin %> project deploy start
|
|
38
|
+
- <%= config.bin %> project deploy validate
|
|
39
|
+
- <%= config.bin %> project deploy quick
|
|
40
|
+
- <%= config.bin %> project deploy cancel
|
|
33
41
|
|
|
34
42
|
The job ID is valid for 10 days from when you started the deploy operation.
|
|
35
43
|
|
|
@@ -40,3 +48,15 @@ Use the job ID of the most recent deploy operation.
|
|
|
40
48
|
# flags.use-most-recent.description
|
|
41
49
|
|
|
42
50
|
For performance reasons, this flag uses job IDs for deploy operations that started only in the past 3 days or less. If your most recent operation was more than 3 days ago, this flag won't find a job ID.
|
|
51
|
+
|
|
52
|
+
# flags.junit
|
|
53
|
+
|
|
54
|
+
output JUnit test results
|
|
55
|
+
|
|
56
|
+
# flags.coverage-formatters
|
|
57
|
+
|
|
58
|
+
format of the code coverage results
|
|
59
|
+
|
|
60
|
+
# flags.results-dir
|
|
61
|
+
|
|
62
|
+
output directory for code coverage and JUnit results; defaults to the deploy ID
|
|
@@ -26,10 +26,10 @@ Job ID of the deploy operation you want to resume.
|
|
|
26
26
|
|
|
27
27
|
These commands return a job ID if they time out or you specified the --async flag:
|
|
28
28
|
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
29
|
+
- <%= config.bin %> project deploy start
|
|
30
|
+
- <%= config.bin %> project deploy validate
|
|
31
|
+
- <%= config.bin %> project deploy quick
|
|
32
|
+
- <%= config.bin %> project deploy cancel
|
|
33
33
|
|
|
34
34
|
The job ID is valid for 10 days from when you started the deploy operation.
|
|
35
35
|
|
|
@@ -47,7 +47,7 @@ Number of minutes to wait for the command to complete and display results.
|
|
|
47
47
|
|
|
48
48
|
# flags.wait.description
|
|
49
49
|
|
|
50
|
-
If the command continues to run after the wait period, the CLI returns control of the terminal window to you. To resume watching the deploy operation, run this command again. To check the status of the deploy operation, run "
|
|
50
|
+
If the command continues to run after the wait period, the CLI returns control of the terminal window to you. To resume watching the deploy operation, run this command again. To check the status of the deploy operation, run "<%= config.bin %> project deploy report".
|
|
51
51
|
|
|
52
52
|
# flags.verbose.summary
|
|
53
53
|
|
|
@@ -60,3 +60,15 @@ Show concise output of the deploy operation result.
|
|
|
60
60
|
# error.DeployNotResumable
|
|
61
61
|
|
|
62
62
|
Job ID %s is not resumable with status %s.
|
|
63
|
+
|
|
64
|
+
# flags.junit
|
|
65
|
+
|
|
66
|
+
output JUnit test results
|
|
67
|
+
|
|
68
|
+
# flags.coverage-formatters
|
|
69
|
+
|
|
70
|
+
format of the code coverage results
|
|
71
|
+
|
|
72
|
+
# flags.results-dir
|
|
73
|
+
|
|
74
|
+
output directory for code coverage and JUnit results; defaults to the deploy ID
|
|
@@ -4,7 +4,7 @@ Validate a metadata deployment without actually executing it.
|
|
|
4
4
|
|
|
5
5
|
# description
|
|
6
6
|
|
|
7
|
-
Use this command to verify whether a deployment will succeed without actually deploying the metadata to your org. This command is similar to "
|
|
7
|
+
Use this command to verify whether a deployment will succeed without actually deploying the metadata to your org. This command is similar to "<%= config.bin %> project deploy start", except you're required to run Apex tests, and the command returns a job ID rather than executing the deployment. If the validation succeeds, then you pass this job ID to the "<%= config.bin %> project deploy quick" command to actually deploy the metadata. This quick deploy takes less time because it skips running Apex tests. The job ID is valid for 10 days from when you started the validation. Validating first is useful if the deployment to your production org take several hours and you don’t want to risk a failed deploy.
|
|
8
8
|
|
|
9
9
|
You must run this command from within a project.
|
|
10
10
|
|
|
@@ -14,7 +14,7 @@ To validate the deployment of multiple metadata components, either set multiple
|
|
|
14
14
|
|
|
15
15
|
# examples
|
|
16
16
|
|
|
17
|
-
- NOTE: These examples focus on validating large deployments. See the help for "
|
|
17
|
+
- NOTE: These examples focus on validating large deployments. See the help for "<%= config.bin %> project deploy start" for examples of deploying smaller sets of metadata which you can also use to validate.
|
|
18
18
|
|
|
19
19
|
- Validate the deployment of all source files in a directory to the default org:
|
|
20
20
|
|
|
@@ -72,7 +72,7 @@ Number of minutes to wait for the command to complete and display results.
|
|
|
72
72
|
|
|
73
73
|
# flags.wait.description
|
|
74
74
|
|
|
75
|
-
If the command continues to run after the wait period, the CLI returns control of the terminal window to you and returns the job ID. To resume watching the validation, run "
|
|
75
|
+
If the command continues to run after the wait period, the CLI returns control of the terminal window to you and returns the job ID. To resume watching the validation, run "<%= config.bin %> project deploy resume". To check the status of the validation, run "<%= config.bin %> project deploy report".
|
|
76
76
|
|
|
77
77
|
# flags.manifest.summary
|
|
78
78
|
|
|
@@ -112,7 +112,7 @@ Run the command asynchronously.
|
|
|
112
112
|
|
|
113
113
|
# flags.async.description
|
|
114
114
|
|
|
115
|
-
The command immediately returns the job ID and control of the terminal to you. This way, you can continue to use the CLI. To resume watching the validation, run "
|
|
115
|
+
The command immediately returns the job ID and control of the terminal to you. This way, you can continue to use the CLI. To resume watching the validation, run "<%= config.bin %> project deploy resume". To check the status of the validation, run "<%= config.bin %> project deploy report".
|
|
116
116
|
|
|
117
117
|
# flags.metadata-dir.summary
|
|
118
118
|
|
|
@@ -126,6 +126,10 @@ Indicates that the metadata zip file points to a directory structure for a singl
|
|
|
126
126
|
|
|
127
127
|
Successfully validated the deployment (%s).
|
|
128
128
|
|
|
129
|
+
# info.suggestedQuickDeploy
|
|
130
|
+
|
|
131
|
+
Run "%s project deploy quick --job-id %s" to execute this deploy
|
|
132
|
+
|
|
129
133
|
# error.FailedValidation
|
|
130
134
|
|
|
131
|
-
|
|
135
|
+
Failed to validate the deployment (%s).
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# description
|
|
2
|
+
|
|
3
|
+
create a project manifest that lists the metadata components you want to deploy or retrieve
|
|
4
|
+
Create a manifest from a list of metadata components (--metadata) or from one or more local directories that contain source files (--source-path). You can specify either of these parameters, not both.
|
|
5
|
+
|
|
6
|
+
Use --manifest-type to specify the type of manifest you want to create. The resulting manifest files have specific names, such as the standard package.xml or destructiveChanges.xml to delete metadata. Valid values for this parameter, and their respective file names, are:
|
|
7
|
+
|
|
8
|
+
package : package.xml (default)
|
|
9
|
+
pre : destructiveChangesPre.xml
|
|
10
|
+
post : destructiveChangesPost.xml
|
|
11
|
+
destroy : destructiveChanges.xml
|
|
12
|
+
|
|
13
|
+
See https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_deleting_files.htm for information about these destructive manifest files.
|
|
14
|
+
|
|
15
|
+
Use --manifest-name to specify a custom name for the generated manifest if the pre-defined ones don’t suit your needs. You can specify either --manifest-type or --manifest-name, but not both.
|
|
16
|
+
|
|
17
|
+
# examples
|
|
18
|
+
|
|
19
|
+
- $ <%= config.bin %> <%= command.id %> -m ApexClass
|
|
20
|
+
|
|
21
|
+
- $ <%= config.bin %> <%= command.id %> -m ApexClass:MyApexClass --manifest-type destroy
|
|
22
|
+
|
|
23
|
+
- $ <%= config.bin %> <%= command.id %> --source-path force-app --manifest-name myNewManifest
|
|
24
|
+
|
|
25
|
+
- $ <%= config.bin %> <%= command.id %> --from-org test@myorg.com --include-packages unlocked
|
|
26
|
+
|
|
27
|
+
# flags.include-packages
|
|
28
|
+
|
|
29
|
+
comma-separated list of package types (managed, unlocked) whose metadata is included in the manifest; by default, metadata in packages is ignored
|
|
30
|
+
|
|
31
|
+
# flags.from-org
|
|
32
|
+
|
|
33
|
+
username or alias of the org that contains the metadata components from which to build a manifest
|
|
34
|
+
|
|
35
|
+
# flags.manifest-type
|
|
36
|
+
|
|
37
|
+
type of manifest to create; the type determines the name of the created file
|
|
38
|
+
|
|
39
|
+
# flags.manifest-name
|
|
40
|
+
|
|
41
|
+
name of a custom manifest file to create
|
|
42
|
+
|
|
43
|
+
# flags.output-dir
|
|
44
|
+
|
|
45
|
+
directory to save the created manifest
|
|
46
|
+
|
|
47
|
+
# flags.source-path
|
|
48
|
+
|
|
49
|
+
comma-separated list of paths to the local source files to include in the manifest
|
|
50
|
+
|
|
51
|
+
# flags.metadata
|
|
52
|
+
|
|
53
|
+
comma-separated list of names of metadata components to include in the manifest
|
|
54
|
+
|
|
55
|
+
# success
|
|
56
|
+
|
|
57
|
+
successfully wrote %s
|
|
58
|
+
|
|
59
|
+
# successOutputDir
|
|
60
|
+
|
|
61
|
+
successfully wrote %s to %s
|
|
@@ -157,7 +157,7 @@ There are changes in your local files that conflict with the org changes you're
|
|
|
157
157
|
|
|
158
158
|
- To overwrite the local changes, rerun this command with the --ignore-conflicts flag.
|
|
159
159
|
|
|
160
|
-
- To overwrite the remote changes, run the "sf deploy
|
|
160
|
+
- To overwrite the remote changes, run the "sf project deploy start" command with the --ignore-conflicts flag.
|
|
161
161
|
|
|
162
162
|
# info.WroteZipFile
|
|
163
163
|
|
|
@@ -6,7 +6,7 @@ Preview a retrieval to see what will be retrieved from the org, the potential co
|
|
|
6
6
|
|
|
7
7
|
You must run this command from within a project.
|
|
8
8
|
|
|
9
|
-
The command outputs a table that describes what will happen if you run the "
|
|
9
|
+
The command outputs a table that describes what will happen if you run the "<%= config.bin %> project retrieve start" command. The table lists the metadata components that will be retrieved and deleted. The table also lists the current conflicts between files in your local project and components in the org. Finally, the table lists the files that won't be retrieved because they're included in your .forceignore file.
|
|
10
10
|
|
|
11
11
|
If your org allows source tracking, then this command considers conflicts between the org and local. Some orgs, such as production orgs, never allow source tracking. Use the "--no-track-source" flag when you create a scratch or sandbox org to disable source tracking.
|
|
12
12
|
|
|
@@ -54,6 +54,6 @@ There are local changes that conflict with the remote changes that would be retr
|
|
|
54
54
|
|
|
55
55
|
# error.Conflicts.Actions
|
|
56
56
|
|
|
57
|
-
- To overwrite the remote changes, run the "
|
|
57
|
+
- To overwrite the remote changes, run the "project deploy start" command with the --ignore-conflicts flag.
|
|
58
58
|
|
|
59
|
-
- To overwrite the local changes, run the "
|
|
59
|
+
- To overwrite the local changes, run the "project retrieve start" command with the --ignore-conflicts flag.
|