@@ -107,7 +107,9 @@ the [SandboxNuts](https://github.com/salesforcecli/plugin-org/actions/workflows/
107107- [ ` sf org create scratch ` ] ( #sf-org-create-scratch )
108108- [ ` sf org delete sandbox ` ] ( #sf-org-delete-sandbox )
109109- [ ` sf org delete scratch ` ] ( #sf-org-delete-scratch )
110+ - [ ` sf org disable tracking ` ] ( #sf-org-disable-tracking )
110111- [ ` sf org display ` ] ( #sf-org-display )
112+ - [ ` sf org enable tracking ` ] ( #sf-org-enable-tracking )
111113- [ ` sf org list ` ] ( #sf-org-list )
112114- [ ` sf org list metadata ` ] ( #sf-org-list-metadata )
113115- [ ` sf org list metadata-types ` ] ( #sf-org-list-metadata-types )
@@ -160,7 +162,7 @@ FLAG DESCRIPTIONS
160162 for a number of minutes, the client exits. Specify a longer wait time if timeouts occur frequently.
161163```
162164
163- _ See code: [ src/commands/force/org/clone.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5 /src/commands/force/org/clone.ts ) _
165+ _ See code: [ src/commands/force/org/clone.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6 /src/commands/force/org/clone.ts ) _
164166
165167## ` sf force org create `
166168
@@ -208,7 +210,7 @@ EXAMPLES
208210 $ sf force org create -t sandbox -f config/dev-sandbox-def.json -a MyDevSandbox -u prodOrg
209211```
210212
211- _ See code: [ src/commands/force/org/create.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5 /src/commands/force/org/create.ts ) _
213+ _ See code: [ src/commands/force/org/create.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6 /src/commands/force/org/create.ts ) _
212214
213215## ` sf force org delete `
214216
@@ -240,7 +242,7 @@ EXAMPLES
240242 $ sf force org delete -u MyOrgAlias -p
241243```
242244
243- _ See code: [ src/commands/force/org/delete.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5 /src/commands/force/org/delete.ts ) _
245+ _ See code: [ src/commands/force/org/delete.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6 /src/commands/force/org/delete.ts ) _
244246
245247## ` sf force org status `
246248
@@ -278,7 +280,7 @@ EXAMPLES
278280 $ sf force org status --sandboxname DevSbx1 --wait 45 --setdefaultusername -u prodOrg
279281```
280282
281- _ See code: [ src/commands/force/org/status.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5 /src/commands/force/org/status.ts ) _
283+ _ See code: [ src/commands/force/org/status.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6 /src/commands/force/org/status.ts ) _
282284
283285## ` sf org create sandbox `
284286
@@ -383,7 +385,7 @@ FLAG DESCRIPTIONS
383385 sandbox.
384386```
385387
386- _ See code: [ src/commands/org/create/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5 /src/commands/org/create/sandbox.ts ) _
388+ _ See code: [ src/commands/org/create/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6 /src/commands/org/create/sandbox.ts ) _
387389
388390## ` sf org create scratch `
389391
@@ -536,7 +538,7 @@ FLAG DESCRIPTIONS
536538 Omit this flag to have Salesforce generate a unique username for your org.
537539```
538540
539- _ See code: [ src/commands/org/create/scratch.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5 /src/commands/org/create/scratch.ts ) _
541+ _ See code: [ src/commands/org/create/scratch.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6 /src/commands/org/create/scratch.ts ) _
540542
541543## ` sf org delete sandbox `
542544
@@ -580,7 +582,7 @@ EXAMPLES
580582 $ sf org delete sandbox --target-org my-sandbox --no-prompt
581583```
582584
583- _ See code: [ src/commands/org/delete/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5 /src/commands/org/delete/sandbox.ts ) _
585+ _ See code: [ src/commands/org/delete/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6 /src/commands/org/delete/sandbox.ts ) _
584586
585587## ` sf org delete scratch `
586588
@@ -622,7 +624,38 @@ EXAMPLES
622624 $ sf org delete scratch --target-org my-scratch-org --no-prompt
623625```
624626
625- _ See code: [ src/commands/org/delete/scratch.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/org/delete/scratch.ts ) _
627+ _ See code: [ src/commands/org/delete/scratch.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/delete/scratch.ts ) _
628+
629+ ## ` sf org disable tracking `
630+
631+ Disable source tracking in local auth file.
632+
633+ ```
634+ USAGE
635+ $ sf org disable tracking -o <value> [--json]
636+
637+ FLAGS
638+ -o, --target-org=<value> (required) Username or alias of the target org.
639+
640+ GLOBAL FLAGS
641+ --json Format output as json.
642+
643+ DESCRIPTION
644+ Disable source tracking in local auth file.
645+
646+ This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that no source
647+ tracking operations are executed when working with this org.
648+
649+ EXAMPLES
650+ Disable tracking on an org using an alias
651+ - sf org disable tracking -o someAlias
652+ Disable tracking on an org using a username
653+ - sf org disable tracking -o [email protected] 654+ Disable tracking on your default org
655+ - sf org disable tracking
656+ ```
657+
658+ _ See code: [ src/commands/org/disable/tracking.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/disable/tracking.ts ) _
626659
627660## ` sf org display `
628661
@@ -665,7 +698,40 @@ EXAMPLES
665698 $ sf org display --target-org TestOrg1 --verbose
666699```
667700
668- _ See code: [ src/commands/org/display.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/org/display.ts ) _
701+ _ See code: [ src/commands/org/display.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/display.ts ) _
702+
703+ ## ` sf org enable tracking `
704+
705+ Enable source tracking in local auth file.
706+
707+ ```
708+ USAGE
709+ $ sf org enable tracking -o <value> [--json]
710+
711+ FLAGS
712+ -o, --target-org=<value> (required) Username or alias of the target org.
713+
714+ GLOBAL FLAGS
715+ --json Format output as json.
716+
717+ DESCRIPTION
718+ Enable source tracking in local auth file.
719+
720+ This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that source
721+ tracking operations are executed when working with this org.
722+
723+ This command will throw an error if the org does not support tracking.
724+
725+ EXAMPLES
726+ Enable tracking on an org using an alias
727+ - sf org enable tracking -o someAlias
728+ Enable tracking on an org using a username
729+ - sf org enable tracking -o [email protected] 730+ Enable tracking on your default org
731+ - sf org enable tracking
732+ ```
733+
734+ _ See code: [ src/commands/org/enable/tracking.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/enable/tracking.ts ) _
669735
670736## ` sf org list `
671737
@@ -703,7 +769,7 @@ EXAMPLES
703769 $ sf org list --clean
704770```
705771
706- _ See code: [ src/commands/org/list.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5 /src/commands/org/list.ts ) _
772+ _ See code: [ src/commands/org/list.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6 /src/commands/org/list.ts ) _
707773
708774## ` sf org list metadata `
709775
@@ -767,7 +833,7 @@ FLAG DESCRIPTIONS
767833 Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
768834```
769835
770- _ See code: [ src/commands/org/list/metadata.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5 /src/commands/org/list/metadata.ts ) _
836+ _ See code: [ src/commands/org/list/metadata.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6 /src/commands/org/list/metadata.ts ) _
771837
772838## ` sf org list metadata-types `
773839
@@ -820,7 +886,7 @@ FLAG DESCRIPTIONS
820886 Override the api version used for api requests made by this command
821887```
822888
823- _ See code: [ src/commands/org/list/metadata-types.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5 /src/commands/org/list/metadata-types.ts ) _
889+ _ See code: [ src/commands/org/list/metadata-types.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6 /src/commands/org/list/metadata-types.ts ) _
824890
825891## ` sf org open `
826892
@@ -885,7 +951,7 @@ EXAMPLES
885951 $ sf org open --source-file force-app/main/default/flows/Hello.flow-meta.xml
886952```
887953
888- _ See code: [ src/commands/org/open.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5 /src/commands/org/open.ts ) _
954+ _ See code: [ src/commands/org/open.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6 /src/commands/org/open.ts ) _
889955
890956## ` sf org resume sandbox `
891957
@@ -947,7 +1013,7 @@ FLAG DESCRIPTIONS
9471013 returns the job ID. To resume checking the sandbox creation, rerun this command.
9481014```
9491015
950- _ See code: [ src/commands/org/resume/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5 /src/commands/org/resume/sandbox.ts ) _
1016+ _ See code: [ src/commands/org/resume/sandbox.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6 /src/commands/org/resume/sandbox.ts ) _
9511017
9521018## ` sf org resume scratch `
9531019
@@ -993,6 +1059,6 @@ FLAG DESCRIPTIONS
9931059 The job ID is valid for 24 hours after you start the scratch org creation.
9941060```
9951061
996- _ See code: [ src/commands/org/resume/scratch.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.5 /src/commands/org/resume/scratch.ts ) _
1062+ _ See code: [ src/commands/org/resume/scratch.ts] ( https://github.com/salesforcecli/plugin-org/blob/3.0.6 /src/commands/org/resume/scratch.ts ) _
9971063
9981064<!-- commandsstop -->
0 commit comments