GitMergeTask

Join two or more development histories together. See official documentation.

Table 83. Attributes

Name Type Description Default Required
gitPath String Path to Git binary /usr/bin/git No
repository String Path to Git repository n/a Yes
remote String Space separated list of branches to merge into current HEAD. See <commit> in git-merge. n/a No
message String Commit message to be used for the merge commit (in case one is created). See <msg> in git-merge. n/a No
fastForwardCommit Boolean If set false (default), will not generate a merge commit if the merge resolved as a fast-forward, only update the branch pointer. If set true, will generate a merge commit even if the merge resolved as a fast-forward. See --ff/--no-ff options in git-merge. false No
strategy String Merge strategy. One of "resolve", "recursive", "octopus", "ours", or "subtree". See <strategy> in git-merge. n/a No
strategyOption String Pass merge strategy specific option through to the merge strategy. See <strategy-option> in git-merge. n/a No
commit Boolean See --commit in git-merge. false No
nocommit Boolean See --no-commit in git-merge. false No
quiet Boolean Quiet, suppress feedback messages. See --quiet in git-merge. false No