BRANCH SHOWMERGES
Show branch merges with the Unity Version Control CLI.
Read time 1 minuteLast updated 21 days ago
Description
Shows branches pending to be merged.Usage
cm branch | br showmerges <item_path>[ ...] [--format=<format_str>] [--dateformat=<date_format>]
Options
Option / Argument | Description |
|---|---|
| --format | Retrieves the output message in a specific format. See Remarks for more info. |
| --dateformat | Format used to output dates. |
Help
Remarks
Output format parameters (--format option): This command accepts a format string to show the output. The output parameters of this command are the following:Option / Argument | Description |
|---|---|
| Branch id. |
| Comment. |
| Date. |
| Name. |
| Owner. |
| Parent branch name. |
| Parent branch id. |
| Repository id. |
| Repository. |
| Repository name. |
| Repository server. |
Examples
(Displays branches involved in the pending merge of 'file.txt'.)cm branch showmerges file.txt
(Displays branches involved in the merge, printing only the date and the name, with a given date format.)cm branch showmerges file.txt --format="{date} {name}" --dateformat="ddMMyy"