added a simple 'koch branchdone' command to speed up my workflow (#17563)

This commit is contained in:
Andreas Rumpf
2021-03-29 12:42:34 +02:00
committed by GitHub
parent e45b1e3f36
commit ab57e7f244

View File

@@ -664,6 +664,13 @@ proc showHelp() =
quit(HelpText % [VersionAsString & spaces(44-len(VersionAsString)),
CompileDate, CompileTime], QuitSuccess)
proc branchDone() =
let thisBranch = execProcess("git symbolic-ref --short HEAD").strip()
if thisBranch != "devel" and thisBranch != "":
exec("git checkout devel")
exec("git branch -D " & thisBranch)
exec("git pull --rebase")
when isMainModule:
var op = initOptParser()
var
@@ -722,6 +729,7 @@ when isMainModule:
let suffix = if latest: HeadHash else: FusionStableHash
exec("nimble install -y fusion@$#" % suffix)
of "ic": icTest(op.cmdLineRest)
of "branchdone": branchDone()
else: showHelp()
break
of cmdEnd: break