Repository

object Repository
class Object
trait Matchable
class Any

Value members

Concrete methods

def blobs[A](paths: List[String], ref: Option[String], after: Option[String], before: Option[String], first: Option[Int], last: Option[Int])(innerSelection: SelectionBuilder[RepositoryBlobConnection, A]): SelectionBuilder[Repository, Option[A]]

Blobs contained within the repository

Blobs contained within the repository

def branchNames(searchPattern: String, offset: Int, limit: Int): SelectionBuilder[Repository, Option[List[String]]]

Names of branches available in this repository that match the search pattern.

Names of branches available in this repository that match the search pattern.

def diskPath: SelectionBuilder[Repository, Option[String]]

Shows a disk path of the repository.

Shows a disk path of the repository.

def empty: SelectionBuilder[Repository, Boolean]

Indicates repository has no visible content.

Indicates repository has no visible content.

def exists: SelectionBuilder[Repository, Boolean]

Indicates a corresponding Git repository exists on disk.

Indicates a corresponding Git repository exists on disk.

def rootRef: SelectionBuilder[Repository, Option[String]]

Default branch of the repository.

Default branch of the repository.

def tree[A](path: Option[String], ref: Option[String], recursive: Option[Boolean])(innerSelection: SelectionBuilder[Tree, A]): SelectionBuilder[Repository, Option[A]]

Tree of the repository.

Tree of the repository.