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

org.ajoberstar.grgit.BranchStatus.groovy Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
package org.ajoberstar.grgit

import groovy.transform.Immutable

/**
 * The tracking status of a branch.
 * @since 0.2.0
 */
@Immutable
class BranchStatus {
  /**
   * The branch this object is for.
   */
  Branch branch

  /**
   * The number of commits this branch is ahead of its upstream.
   */
  int aheadCount

  /**
   * The number of commits this branch is behind its upstream.
   */
  int behindCount
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy