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")