Create a new branch from multiple upstream branches without changing the local branch. Intended for creating release candidate branches.
Usage:
git-rc.ps1 [-target] <string> [-upstreamBranches <string[]>] [-comment <string>] [-force] [-dryRun] [-allowOutOfDate] [-allowNoUpstreams]
The name of the new branch.
Aliases: -u, -upstream, -upstreams
Comma-delimited list of branches to merge into the new branch.
Aliases: -m, -message
If specified, adds to the commit message on the upstream tracking branch for creating the RC branch.
Forces an update of the RC branch. Use this if you are replacing the existing branch.
Allows branches that are not up-to-date with their upstreams. (This is the old behavior.)
Allows branches that do not have any upstreams. (This is the old behavior.)
If specified, only test merging, do not push the updates.