PARTIAL CHECKOUT
Perform checkouts in a partial replica with the Unity Version Control CLI.
Read time 1 minuteLast updated 21 days ago
Description
Marks files as ready to modify.Usage
cm partial checkout | co [<item_path>[ ...]] [--resultformat=<str_format>] [--silent] [--ignorefailed]
Options
Option / Argument | Description |
|---|---|
| item_path | Items to checkout. Use double quotes (" ") to specify paths containing spaces. Use a whitespace to separate paths. Use . to apply checkout to current directory. |
| --resultformat | Retrieves the output result message in a specific format. |
| --silent | Does not show any output. |
| --ignorefailed | If an item cannot be locked (the exclusive checkout cannot be performed), the checkout operation will continue without it. |
Help
Remarks
To checkout an item
- The item must be under source code control.
- The item must be checked in.
cm lock listExamples
(Checkouts 'pic1.png' and 'pic2.png' files.)cm partial checkout pic1.png pic2.png
(Checkouts all png files.)cm partial co *.png
(Checkouts current directory.)cm partial checkout .
(Recursively checkouts 'src' folder.)cm partial checkout -R c:\workspace\src