Mark default branch for git

This commit is contained in:
René Pfeuffer
2019-03-25 12:08:44 +01:00
parent 4ec7006108
commit b36f1ca3e4
3 changed files with 175 additions and 41 deletions

View File

@@ -116,7 +116,8 @@ public final class Branch implements Serializable
final Branch other = (Branch) obj;
return Objects.equal(name, other.name)
&& Objects.equal(revision, other.revision);
&& Objects.equal(revision, other.revision)
&& Objects.equal(defaultBranch, other.defaultBranch);
}
/**