From 6a3bc49595120cc2fef83dae8beb5214b5480c0f Mon Sep 17 00:00:00 2001 From: Fedor Korotkiy Date: Sat, 1 Feb 2020 04:02:12 +0300 Subject: [PATCH] Fix branch name --- tools/testtool/commands/export.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testtool/commands/export.go b/tools/testtool/commands/export.go index 21bf1a1..fea7a91 100644 --- a/tools/testtool/commands/export.go +++ b/tools/testtool/commands/export.go @@ -45,7 +45,7 @@ func exportCode(cmd *cobra.Command, args []string) { if _, err := io.ReadFull(rand.Reader, random); err != nil { log.Fatal(err) } - tmpBranch := "temp/" + hex.EncodeToString(random) + tmpBranch := "temp_" + hex.EncodeToString(random) git("checkout", "-b", tmpBranch) git("reset", "public")