All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.nemerosa.ontrack.git.model.GitBranchInfo.kt Maven / Gradle / Ivy

There is a newer version: 4.4.5
Show newest version
package net.nemerosa.ontrack.git.model

/**
 * Information about a branch in a Git repository.
 *
 * @property name Name of the branch
 * @property commit Last commit on the branch
 */
class GitBranchInfo(
        val name: String,
        val commit: GitCommit
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy