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

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

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

import groovy.transform.Immutable

import org.eclipse.jgit.lib.Repository

/**
 * A ref.
 * @since 2.0.0
 */
@Immutable
class Ref {
  /**
   * The fully qualified name of this ref.
   */
  String fullName

  /**
   * The simple name of the ref.
   * @return the simple name
   */
  String getName() {
    return Repository.shortenRefName(fullName)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy