Skip to content

Commit

Permalink
fix: add examples to project reset|delete tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
jshackell-sfdc committed Sep 28, 2023
1 parent a817baa commit 8733444
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
22 changes: 19 additions & 3 deletions messages/delete.tracking.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,23 @@ Resets local and remote source tracking so that Salesforce CLI no longer registe

Use the --revision parameter to reset source tracking to a specific revision number of an org source member. To get the revision number, query the SourceMember Tooling API object with the 'data soql' command. For example:

<%= config.bin %> data query --query "SELECT MemberName, MemberType, RevisionCounter FROM SourceMember" --use-tooling-api
<%= config.bin %> data query --query "SELECT MemberName, MemberType, RevisionCounter FROM SourceMember" --use-tooling-api --target-org my-scratch

# resetExample

- Reset source tracking for the org with alias "my-scratch":

$ <%= config.bin %> <%= command.id %> --target-org my-scratch

- Reset source tracking to revision number 30 for your default org:

$ <%= config.bin %> <%= command.id %> --revision 30

# deleteExample

- Delete local source tracking for the org with alias "my-scratch":

$ <%= config.bin %> <%= command.id %> --target-org my-scratch

# deleteSummary

Expand All @@ -32,8 +48,8 @@ SourceMember revision counter number to reset to.

# promptMessage

WARNING: This operation will modify all your local source tracking files. The operation can have unintended consequences on all the force:source commands. Are you sure you want to proceed?
WARNING: This operation will modify all your local source tracking files. The operation can have unintended consequences on all the "project deploy" and "project retrieve" commands. Are you sure you want to proceed?

# conflictMsg

We couldn't complete the operation due to conflicts. Verify that you want to keep the existing versions, then run the command again with the --forceoverwrite (-f) option.
We couldn't complete the operation due to conflicts. Verify that you want to keep the existing versions, then run the command again with the --forceoverwrite (-f) flag.
2 changes: 1 addition & 1 deletion src/commands/project/delete/tracking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class DeleteTracking extends SfCommand<DeleteTrackingResult> {
public static readonly summary = messages.getMessage('deleteSummary');
public static readonly description = messages.getMessage('deleteDescription');
public static readonly requiresProject = true;
public static readonly examples = [];
public static readonly examples = messages.getMessages('deleteExample');

public static readonly flags = {
'api-version': orgApiVersionFlagWithDeprecations,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/project/reset/tracking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class ResetTracking extends SfCommand<ResetTrackingResult> {
public static readonly summary = messages.getMessage('resetSummary');
public static readonly description = messages.getMessage('resetDescription');
public static readonly requiresProject = true;
public static readonly examples = [];
public static readonly examples = messages.getMessages('resetExample');

public static readonly flags = {
'target-org': requiredOrgFlagWithDeprecations,
Expand Down

0 comments on commit 8733444

Please sign in to comment.