sbt-release icon indicating copy to clipboard operation
sbt-release copied to clipboard

more git commands needed

Open kretes opened this issue 9 years ago • 0 comments

we would benefit from more git commands in Git DSL:

  1. create branch from revision/tag
  2. push specific branch

we currently have some rough implementation of them in class extending Git

def branchFromTag(name: String, tag: String) = cmd("branch", name, tag)

def pushBranch(branchName: String) = cmd("push", "origin", branchName)

kretes avatar Oct 08 '14 11:10 kretes