UNPKG

1.16 kBJavaScriptView Raw
1module.exports = {
2 commandDescription: 'pull source from the scratch org to the project',
3 commandDescriptionLong: 'Pulls changed source from the scratch org to your project to keep them in sync.',
4 commandHelp:
5 'If the command detects a conflict, it displays the conflicts but does not complete the process. ' +
6 'After reviewing the conflict, rerun the command with the --forceoverwrite parameter.',
7 forceoverwriteFlagDescription: 'ignore conflict warnings and overwrite changes to the project',
8 forceoverwriteFlagDescriptionLong:
9 'Runs the pull command even if conflicts exist. Changes in the scratch org overwrite changes in the project.',
10 waitFlagDescriptionLong:
11 'The number of minutes to wait for the command to complete and display ' +
12 'results to the terminal window. If the command continues to run after the wait period, the CLI returns ' +
13 'control of the terminal window to you. The default is 33 minutes.',
14 NonScratchOrgPull:
15 'We can\'t retrieve your changes. "force:source:pull" is only available for orgs that have source tracking enabled. Use "force:source:retrieve" or "force:mdapi:retrieve" instead.'
16};