cherry-pick command allows you to apply the changes from a specific commit into your current workspace without merging the entire branch.
<ref_id> parameter is the ID of the commit to cherry-pick.
[--nowait] returns immediately without waiting for the files to finish syncing to your local workspace. By default, the command waits until the sync is done.
This is useful when you want to apply specific changes from another branch without merging everything.
An example of cherry-picking a commit:
abc123def456 will be applied to your current workspace. You’ll need to commit these changes to save them to your branch.
If there are conflicts between the cherry-picked commit and your current workspace, you’ll need to resolve them manually.

