Packages

class Git extends AnyRef

Source
git.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Git
  2. AnyRef
  3. Any
Implicitly
  1. by richDrxAny
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class Commit(id: String, author: String, email: String, date: Date, subject: String, body: String, refs: List[Ref]) extends Product with Serializable
  2. case class Ref(path: String) extends Product with Serializable
  3. case class Remote(name: String, url: String) extends Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Git toany2stringadd[Git] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Git, B)
    Implicit
    This member is added by an implicit conversion from Git toArrowAssoc[Git] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def applyIf(t: Boolean, f: (Git) => Git): Git
    Implicit
    This member is added by an implicit conversion from Git toDrxAny[Git] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  7. def applyIf(t: (Git) => Boolean)(f: (Git) => Git): Git

    better chaining for types

    better chaining for types

    Implicit
    This member is added by an implicit conversion from Git toDrxAny[Git] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def autoCommit(msg: String = "auto commit"): Result[String]
  10. def branch: drx.Future[String]
  11. def clean: Result[File]
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  13. def commit(msg: String): Result[String]
  14. def commits(lastN: Int): Result[Commit]
  15. def commits: Result[Commit]
  16. val config: File
  17. def diff: Result[File]
  18. lazy val dir: File
  19. def elementOf(xs: Set[Git]): Boolean
    Implicit
    This member is added by an implicit conversion from Git toDrxAny[Git] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  20. def ensuring(cond: (Git) => Boolean, msg: => Any): Git
    Implicit
    This member is added by an implicit conversion from Git toEnsuring[Git] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: (Git) => Boolean): Git
    Implicit
    This member is added by an implicit conversion from Git toEnsuring[Git] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: Boolean, msg: => Any): Git
    Implicit
    This member is added by an implicit conversion from Git toEnsuring[Git] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. def ensuring(cond: Boolean): Git
    Implicit
    This member is added by an implicit conversion from Git toEnsuring[Git] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  24. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  26. def fetch(args: String*): Result[String]
  27. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  28. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Git toStringFormat[Git] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  29. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. def git(cmd: String, args: String*): Shell
  31. val gitDir: File
  32. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  33. def head: drx.Future[Commit]
  34. lazy val isBare: Boolean
  35. def isDirty: drx.Future[Boolean]

    check if a git repo has modified files

  36. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  37. def krypton: drx.Future[Version]
  38. def log(format: String): Result[String]
  39. def makeBare: Git
  40. def merge(args: String*): Result[String]
  41. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  42. def noneIf(f: (Git) => Boolean): Option[Git]
    Implicit
    This member is added by an implicit conversion from Git toDrxAny[Git] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  43. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  44. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  45. def optionIf(f: (Git) => Boolean): Option[Git]

    optionally wrap an object

    optionally wrap an object

    Implicit
    This member is added by an implicit conversion from Git toDrxAny[Git] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  46. def patch: drx.Future[String]
  47. def preApply[B](f: (Git) => B): B

    a preApply f => f(a)

    a preApply f => f(a)

    Implicit
    This member is added by an implicit conversion from Git toDrxAny[Git] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  48. def prune(remote: String = "origin"): Result[String]
  49. def pull(args: String*): Result[String]
  50. def push(args: String*): Result[String]
  51. val refs: Result[(Ref, Commit)]
  52. def remotes: Result[Remote]
  53. def resetAndClean(): Result[String]
  54. def show(date: Date, file: File): Result[String]
  55. def sideEffect(f: (Git) => Unit): Git

    side effect filter

    side effect filter

    Implicit
    This member is added by an implicit conversion from Git toDrxAny[Git] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  56. def someIf(f: (Git) => Boolean): Option[Git]
    Implicit
    This member is added by an implicit conversion from Git toDrxAny[Git] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  57. def staged: Result[File]
  58. def sync(remote: String = "origin", branch: String = "master"): Result[String]
  59. def syncBareTo(dst: File, dryRun: Boolean = false): Git
  60. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  61. val tags: Result[(Ref, Commit)]
  62. val thisAny: Git
    Implicit
    This member is added by an implicit conversion from Git toDrxAny[Git] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  63. def toString(): String
    Definition Classes
    Git → AnyRef → Any
  64. def undo(file: File): Result[String]
  65. def versions: Result[(Version, Commit)]
  66. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  67. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  68. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  69. lazy val workTree: File

Deprecated Value Members

  1. def ?>(f: (Git) => Boolean): Option[Git]

    alias for option if

    alias for option if

    Implicit
    This member is added by an implicit conversion from Git toDrxAny[Git] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) to many symbols are hard to undertand

  2. def log: Result[Commit]
    Annotations
    @deprecated
    Deprecated

    (Since version di4) use commmits instead

  3. def |>[B](f: (Git) => B): B
    Implicit
    This member is added by an implicit conversion from Git toDrxAny[Git] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) use preApply if you must (symbols are concise without concision)

  4. def [B](y: B): (Git, B)
    Implicit
    This member is added by an implicit conversion from Git toArrowAssoc[Git] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion richDrxAny fromGit to DrxAny[Git]

Inherited by implicit conversion any2stringadd fromGit to any2stringadd[Git]

Inherited by implicit conversion StringFormat fromGit to StringFormat[Git]

Inherited by implicit conversion Ensuring fromGit to Ensuring[Git]

Inherited by implicit conversion ArrowAssoc fromGit to ArrowAssoc[Git]

Ungrouped