The CLI serialization command

Version:

The Sitecore serialization plugin provides the serialization command with the short form ser.

This command handles the serialization of items.

To install the serialization plugin, run the following code:

dotnet sitecore plugin add -n Sitecore.DevEx.Extensibility.Serialization

Usage

You can use the command as follows:

dotnet sitecore serialization [subcommand] [options]

Alternatively, you can use the short form for the command as follows:

dotnet sitecore ser [subcommand] [options]

Subcommands

You can use the following subcommands:

  • The info subcommand - shows serialization configuration information.
  • The explain subcommand - explains whether a content item path is included and why.
  • The pull subcommand - serializes content items from a Sitecore instance to your file system.
  • The push subcommand - pushes serialized content items from your file system to a Sitecore instance.
  • The diff subcommand - compares the content items of two Sitecore instances.
  • The validate subcommand - checks serialized content items for validity. Can fix common issues with the --fix argument.
  • The watch subcommand - monitors changes to content items in a Sitecore instance and automatically serializes the changes to your file system.
  • The package subcommand - provides additional commands for working packages of serialized items.
  • The package create subcommand - creates a package of serialized items.
  • The package install subcommand - installs a package of serialized items in a Sitecore instance.

Some subcommands have additional options or improvements to existing options starting with version 4.0.0, as follows:

  • In version 4.0.0 and later, you can specify excluded fields with the --exclude (-e) option on most subcommands.
  • In version 4.0.0 and later, the push subcommand supports the --targets (-pt) option.
  • In version 4.1.0 and later, some subcommands support a --force (-fr) option that forces the operation to continue by skipping error-causing files, throwing a warning instead of an error. The option is available for version 4.1.0 and later.
  • In version 4.1.0 and later, the --include (-i) and --exclude (-e) options support module tags. The subcommands push and pull also support tags.

The info subcommand

The info command provides information about how the solution is set up and configured for use as it relates to content serialization.

The information returned by the command includes a list of all serialization module configurations. For every serialization module configuration, the information includes:

  • Module name.
  • Module description.
  • Item subtrees with name and path.

You can use the following options with the info subcommand:

OptionRequired?Description
-i, --include <include>NoSpecify module configurations to include. Supports module name, tags. Wildcards and multiple values are allowed.
-e, --exclude <exclude>NoSpecify module configurations to exclude explicitly. Supports module name, tags. Wildcards and multiple values are allowed.
-c, --config <config>NoPath to root sitecore.config directory. Default: current working directory.
-v, --verboseNoWrite additional diagnostic and performance data.
-t, --traceNoWrite additional diagnostic and performance data.
-?, -h, --helpNoDisplay developer help and usage information about the command.

The following is an example of using the info subcommand:

  • Command: Result
  • dotnet sitecore ser info:

> sitecore ser info

Maximum subtree-relative item path allowed: 100

Feature.BasicContent
  Subtrees:
    templates: /sitecore/templates/Feature/BasicContent
    renderings: /sitecore/layout/Renderings/Feature/BasicContent
    buttons: core:/sitecore/content/Applications/WebEdit/Custom Experience Buttons/BasicContent
      FieldsFilter Excludes: 0
  Roles: 0

# ...

Project.DemoContent
An example of separating content into a separate module, so it can be excluded from deploy.
  Subtrees:
    content: /sitecore/content/Basic Company
    media: /sitecore/media library/Basic Company
      FieldsFilter Excludes: 1
  Roles: 0

Excluded Fields From Default Serialization Config:
      FieldsFilter Excludes: 1

The explain subcommand

You can use the explain to provide detailed serialization-related information on a given Sitecore item path and an optional database.

The subcommand provides the following:

  • Item path is within the scope of any serialization modules.
  • Related allowed operations for the given item path.
  • Path to the serialization Module.json set up for the given path.

You can use the following options with the explain subcommand:

OptionRequired?Description
-p, --path <path>YesItem path to explain.
-d, --database <database>NoDatabase of the item path to explain. Default: master.
-c, --config <config>NoPath to root sitecore.config directory. Default: current working directory.
-v, --verboseNoWrite some additional diagnostic and performance data.
-?, -h, --helpNoDisplay developer help and usage information about the command.

The following are examples of using the explain subcommand:

  • Command: Result
  • Explain a path not included in any module configuration
    sitecore ser explain --path "NOT_INCLUDED_PATH":
Path master:NOT_INCLUDED_PATH is not included in any module configuration.
  • Explain a path included in a module configuration
    sitecore ser explain --path "INCLUDED_PATH":

[MODULE_NAME] [INCLUDED_PATH] Item path matches subtree scope ItemAndDescendants.
[MODULE_NAME] [INCLUDED_PATH] Subtree set allowed push operations CreateUpdateAndDelete
[MODULE_NAME] [INCLUDED_PATH] Path master:INCLUDED_PATH is included!
Physical path:PATH_TO_YAML_FILE

The pull subcommand

The pull subcommand takes items from Sitecore, serializes them, and stores them as .yml files on a given file system path. The subcommand uses Module.json files to determine what items are included in the serialization process. During the pull operation, the serialization engine evaluates existing serialized items on disk and performs a deep comparison of the same items in the source Sitecore instance.

This command requires elevated permissions.

You can use the following options with the pull subcommand:

OptionRequired?Description
-n, --environment-name <environment-name>NoNamed Sitecore environment to use. Default: 'default';
-i, --include <include>NoSpecify module configurations to include. Supports module name, tags. Wildcards and multiple values are allowed.
-e, --exclude <exclude> NoSpecify module configurations to exclude explicitly. Supports module name, tags. Wildcards and multiple values are allowed.
-w, --what-ifNoList the commands involved in the operation without running them.
Note

See the video

Sitecore CLI and the 'what-if' flagfor more information on the -- what-if option.
-s, --skip-validationNoSkip filesystem integrity validation before syncing.
-c, --config <config>NoPath to root sitecore.config directory. Default: current working directory.
-v, --verboseNoWrite additional diagnostic and performance data.
-t, --traceNoWrite additional diagnostic and performance data.
-fr, --forceNoShow a warning instead of an error. Skip the item causing the warning and continue serialization.
--use-debug-signaturesNoUse debug (un-hashed) item signatures to diagnose hash mismatches. Much slower.
-?, -h, --helpNoDisplay developer help and usage information about the command.

The following are examples of using the pull subcommand:

  • Command: Result
  • dotnet sitecore ser pull: All Sitecore items from the configurations are serialized on disk.
  • dotnet sitecore ser pull -i ModuleA ModuleB: All Sitecore items from the ModuleA and ModuleB configurations are serialized on disk.
  • dotnet sitecore ser pull -i tags:[tagA,tagB]: All Sitecore items from the modules tagged as tagA and tagB configurations are serialized on disk.
  • dotnet sitecore ser pull -i tags:[tagA,tagB] ModuleA: All Sitecore items from the modules tagged as tagA, tagB, and ModuleA configurations are serialized on disk.

The push subcommand

The push command takes items serialized as .yml files on disk and pushes them to a destination Sitecore instance. The push operation uses serialization Module.json files to determine the items included in the serialization process. During the push operation, the serialization engine evaluates existing serialized items on the file system and performs a deep comparison of the same Items in the source Sitecore instance.

This command requires elevated permissions.

You can use the following options with the push subcommand:

OptionRequired?Description
-n, --environment-name <environment-name>NoNamed Sitecore environment to use. Default: 'default'.
-i, --include <include>NoSpecify module configurations to include. Supports module name, tags. Wildcards and multiple values are allowed.
-e, --exclude <exclude>NoSpecify module configurations to exclude explicitly. Supports module name, tags. Wildcards and multiple values are allowed.
-w, --what-ifNoList the commands involved in the operation without running them.
-s, --skip-validationNoSkip file system integrity validation before syncing.
-c, --config <config>NoPath to root sitecore.config directory. Default: current working directory.
-v, --verboseNoWrite additional diagnostic and performance data.
-t, --traceNoWrite additional diagnostic and performance data.
-fr, --forceNoShow a warning instead of an error. Skip the item causing the warning and continue serialization.
--use-debug-signaturesNoUse debug (un-hashed) item signatures to diagnose hash mismatches. Much slower.
-p, --publishNoPublish synced items. Not recommended to use with Publishing Service due to performance drop.
--pt, --targets <targets>NoList of targets database to publish. Blank publishes to the web database.
-?, -h, --helpNoDisplay developer help and usage information about the command.

The following are examples of using the push subcommand:

  • Command: Result
  • dotnet sitecore ser push: All Sitecore items from the configurations are pushed to the Sitecore instance.
  • dotnet sitecore ser push -i ModuleA ModuleB: All Sitecore items from the ModuleA and ModuleB configurations are pushed to the Sitecore instance.
  • dotnet sitecore ser push -i tags:[tagA,tagB]: All Sitecore items from the modules tagged as tagA and tagB configurations are pushed to the Sitecore instance.
  • dotnet sitecore ser push -i tags:[tagA,tagB] ModuleA: All Sitecore items from the modules tagged as tagA, tagB, and ModuleA configurations are pushed to the Sitecore instance.

The diff subcommand

The diff subcommand compares serialization items between a source Sitecore instance and a destination Sitecore instance. The operation uses serialization Module.json files to determine the items included in the comparison process. During the diff command, the serialization engine performs a deep comparison of paths and items in the source Sitecore instance and the destination Sitecore instance.

This command requires elevated permissions in both source and target environments.

You can use the following options with the diff subcommand:

OptionRequired?Description
-s, --source <source>YesNamed Sitecore endpoint to use as a source for comparison.
-d, --destination <destination>YesNamed Sitecore endpoint to use as a destination for comparison.
-i, --include <include>NoSpecify module configurations to include. Supports module name, tags. Wildcards and multiple values are allowed.
-e, --exclude <exclude>NoSpecify module configurations to exclude explicitly. Supports module name, tags. Wildcards and multiple values are allowed.
-p, --path <path>NoItem path to compare (instead of include/exclude).
--source-database <source-database>NoSource database (when used with --path).
--destination-database <destination-database>NoDestination database (when used with --path).
--pushNoApply the detected differences to the destination.
-c, --config <config>NoPath to the root sitecore.config directory. Default: current working directory.
-v, --verboseNoWrite additional diagnostic and performance data.
-t, --traceNoWrite additional diagnostic and performance data.
-?, -h, --helpNoDisplay developer help and usage information about the command.

The following is an example of using the diff subcommand:

  • Command: Result
  • dotnet sitecore ser diff -s SOURCE -d DESTINATION:
[DBNAME] Discovered CHANGES_COUNT changes after evaluating ITEMS_COUNT total items.

The validate subcommand

The validate subcommand ensures file system integrity of serialized items and paths. Additionally, by using the --fix (-f) argument option flag, the command can attempt to auto-correct identified issues. The subcommand evaluates all serialized paths and subtrees on the file system configured in serialization Module.json files and performs the following checks on the file system:

  • Invalid physical path.
  • Orphaned parent ID.
  • Non-included item.
  • Empty folder.
  • Duplicate item ID.
  • Non-unique path.
Note

For more information, see Validate serialized content items.

You can use the following options with the validate subcommand:

OptionRequired?Description
-i, --include <include>NoSpecify module configurations to include. Supports module name, tags. Wildcards and multiple values are allowed.
-e, --exclude <exclude>NoSpecify module configurations to exclude explicitly. Supports module name, tags. Wildcards and multiple values are allowed.
-f, --fixNoExecute possible fix operations when validating the serialized items.
Important

Using the

--fix (-f) option can delete local files.
-c, --config <config>NoPath to the root sitecore.config directory. Default: current working directory.
-v, --verboseNoWrite additional diagnostic and performance data.
-t, --traceNoWrite additional diagnostic and performance data.
-?, -h, --helpNoDisplay developer help and usage information about the command.

The following is an example of using the validate subcommand:

  • Command: Result
  • dotnet sitecore ser validate:

Read-only validation is active. No fixes will be made.
No errors were detected.

  • dotnet sitecore ser validate --fix:

DUPLICATE ID: 5c069416-660c-4028-b5c8-c9f3ce3cb277 found in ...
[D] ~\FILE_DUPLICATE.yml
...
No errors were detected.

The watch subcommand

The watch subcommand monitors changes to content items in a Sitecore instance and automatically serializes the changes to your file system.

This command requires elevated permissions.

You can use the following options with the watch subcommand:

OptionRequired?Description
-n, --environment-name <environment-name>NoNamed Sitecore environment to use. Default: 'default';
-i, --include <include>NoSpecify module configurations to include. Supports module name, tags. Wildcards and multiple values are allowed.
-e, --exclude <exclude>NoSpecify module configurations to exclude explicitly. Supports module name, tags. Wildcards and multiple values are allowed.
-s, --skip-pullNoSkip pulling data from Sitecore before starting the watcher.
--allow-file-changesNoContinue watching files if they change.
Important

Using this option can result in tree corruption if the underlying state is changed. Use this option only if some other program touches serialized files that are not changing.

-fr, --forceNoShow a warning instead of an error. Skip the item causing the warning and continue serialization.
-c, --config <config>NoPath to the root sitecore.config directory. Default: current working directory.
-v, --verboseNoWrite additional diagnostic and performance data.
-t, --traceNoWrite additional diagnostic and performance data.
-?, -h, --helpNoDisplay developer help and usage information about the command.

The following is an example of using the watch subcommand:

  • Command: Result
  • dotnet sitecore ser watch:
Watcher is online! Changes made to serialized items will be automatically pulled.

The package subcommand

The package subcommand (short form pkg) provides additional subcommands for package specific operations, as follows:

SubcommandDescription
createCreates a new serialized item package.
installInstall an existing item package to Sitecore.

This command requires elevated permissions.

You can use the following options with the package subcommand:

-?, -h, --helpDisplay developer help and usage information about the command.

The package create subcommand

The package create subcommand creates a new serialized item package.

You can use the following options with the package create subcommand:

OptionRequired?Description
-o, --output <output>YesPath for placing the package after creation. If you do not provide an extension, it is added for you.
--overwriteNoAllow overwriting an existing package.
-i, --include <include>NoSpecify module configurations to include. Supports module name, tags. Wildcards and multiple values are allowed. From version 4.1.0 and later, roles specified in a Serialization Module are also serialized.
-e, --exclude <exclude>NoSpecify module configurations to exclude explicitly. Supports module name, tags. Wildcards and multiple values are allowed.
-c, --config <config>NoPath to the root sitecore.config directory. Default: current working directory.
-v, --verboseNoWrite additional diagnostic and performance data.
-t, --traceNoWrite additional diagnostic and performance data.
-?, -h, --helpNoDisplay developer help and usage information about the command.

The following is an example of using the package create subcommand:

  • Command: Result
  • dotnet sitecore ser pkg create -o FILE_PATH: A package was created at the specified FILE_PATH.
  • Serializing a module with roles:{ "namespace": "Feature.Products", "roles": [ { "domain": "DevEx", "pattern": "Product" } ] }dotnet sitecore ser info --include Feature.Products -v: Output:

[role] [A] Role DevEx\Product Admin is created successfully.
[role] [A] Role DevEx\Product Merchandiser is created successfully.
[roles] Synced 2 roles completed.

The package install subcommand

The package install subcommand installs an existing item package to Sitecore.

This command requires elevated permissions.

You can use the following options with the package install subcommand:

OptionRequired?Description
-f, --package <package>YesPath to the package to install.
--auth, --authority <authority>NoIdentity authority for the environment, such as identity server or AAD tenant URL.
--cm <cm>NoSitecore content management hostname to connect to.
--client-id <client-id>NoThe OAuth ClientID to send. Defaults to 'Device' for device auth and 'SitecoreCLIServer' for client credentials.
--client-secret <client-secret>NoThe OAuth ClientID to send. Defaults to 'Device' for device auth and 'SitecoreCLIServer' for client credentials.
-n, --environment-name <environment-name>NoNamed Sitecore environment to use. Default: 'default'.
-w, --what-ifNoList the commands involved in the operation without running them.
-i, --include <include>NoSpecify module configurations to include. Supports module name, tags. Wildcards and multiple values are allowed.
-e, --exclude <exclude>NoSpecify module configurations to exclude explicitly. Supports module name, tags. Wildcards and multiple values are allowed.
-c, --config <config>NoPath to root sitecore.config directory. Default: current working directory.
-v, --verboseNoWrite additional diagnostic and performance data.
-t, --traceNoWrite additional diagnostic and performance data.
-p, --publishNoPublish synced items.

Because of performance concerns, we recommend you avoid using this option with the Publishing Service.
-?, -h, --helpNoDisplays developer help and usage information about the command.

The following is an example of using the package install subcommand:

  • Command: Result
  • dotnet sitecore ser pkg install -f FILE_PATH: The package FILE_PATH was installed to the Sitecore instance.
If you have suggestions for improving this article, let us know!