Class MergeInput
- java.lang.Object
-
- com.google.gerrit.extensions.common.MergeInput
-
public class MergeInput extends Object
-
-
Field Summary
Fields Modifier and Type Field Description boolean
allowConflicts
Whether the creation of the merge should succeed if there are conflicts.String
source
source
can be any Git object reference expression.String
sourceBranch
If specified, visibility of thesource
commit will only be checked againstsource_branch
, rather than all visible branches.String
strategy
strategy
name of the merge strategy.
-
Constructor Summary
Constructors Constructor Description MergeInput()
-
-
-
Field Detail
-
source
public String source
source
can be any Git object reference expression.- See Also:
- gitrevisions(7)
-
sourceBranch
public String sourceBranch
If specified, visibility of thesource
commit will only be checked againstsource_branch
, rather than all visible branches.
-
strategy
public String strategy
strategy
name of the merge strategy.- See Also:
MergeStrategy
-
allowConflicts
public boolean allowConflicts
Whether the creation of the merge should succeed if there are conflicts.If there are conflicts the file contents of the created change contain git conflict markers to indicate the conflicts.
-
-