git-changes - lists the commits between this branch and another
git changes [(-b|--branch) branch] [(-c|--count)] [(-s|--stat)]
[(-d|--diff)] [--color [when]] [--no-color]
git changes (-h|--help)
git changes (-v|--version)
git-changes lists the commits between the current branch and another. Changes are defined as the commits between HEAD and the merge base calculated using the current and a user specified branch.
-b|--branch branchShow the commits between HEAD and branch. When not specified, master is used.
-c|--countShow as a count of changes.
-s|--statShow as a diffstat.
-d|--diffShow as a full diff.
--color [when] Show colored output. when must be one of always, never, or auto. Not including when is equivalent to --color=always.
--no-color Never color output. Same as --color=never.
-h|--helpPrint a simple help message.
-v|--versionPrint version.
git-changes.default-branch string The default branch to use when finding changes. Option (-b|--branch) branch overrides this setting.
Default: master