Pull code

The git pull command pulls the latest code from a Dimensions CM stream and merges the changes into the Git main branch:

git pull

Version 2.3 and later: This command also pulls any topic streams owned by the current user.

Example

Pulls any changes made in Dimensions CM and merges them into the local Git repository.

If conflicts are found during the pull, the option --strategy=ours ensures that the local changes are preserved and not merged or overwritten by the remote changes.

git pull --strategy=ours