1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
package create
import (
"fmt"
"strings"
"time"
"github.com/MakeNowJust/heredoc/v2"
"gitlab.com/gitlab-org/cli/pkg/git"
"gitlab.com/gitlab-org/cli/pkg/prompt"
"gitlab.com/gitlab-org/cli/pkg/text"
"gitlab.com/gitlab-org/cli/pkg/utils"
"github.com/briandowns/spinner"
"github.com/spf13/cobra"
"gitlab.com/gitlab-org/cli/commands/cmdutils"
)
var longString = `Create a new stacked diff. Adds metadata to your "./.git/stacked" directory.
` + text.ExperimentalString
func NewCmdCreateStack(f *cmdutils.Factory) *cobra.Command {
stackCreateCmd := &cobra.Command{
Use: "create",
Short: `Create a new stacked diff. (EXPERIMENTAL.)`,
Long: strings.Replace(longString, "\"./.git/stacked\"", "`./.git/stacked`", 1),
Aliases: []string{"new"},
Example: heredoc.Doc(`
glab stack create cool-new-feature
glab stack new cool-new-feature
`),
Args: cobra.MaximumNArgs(10),
RunE: func(cmd *cobra.Command, args []string) error {
var titleString string
if len(args) == 1 {
titleString = args[0]
} else if len(args) == 0 {
err := prompt.AskQuestionWithInput(&titleString, "title", "New stack title?", "", true)
if err != nil {
return fmt.Errorf("error prompting for title: %v", err)
}
} else {
titleString = strings.Join(args[:], "-")
}
s := spinner.New(spinner.CharSets[11], 100*time.Millisecond)
color := f.IO.Color()
title := utils.ReplaceNonAlphaNumericChars(titleString, "-")
if title != titleString {
fmt.Fprintf(f.IO.StdErr, "%s warning: invalid characters have been replaced with dashes: %s\n",
color.WarnIcon(),
color.Blue(title))
}
err := git.SetLocalConfig("glab.currentstack", title)
if err != nil {
return fmt.Errorf("error setting local Git config: %v", err)
}
_, err = git.AddStackRefDir(title)
if err != nil {
return fmt.Errorf("error adding stack metadata directory: %v", err)
}
if f.IO.IsOutputTTY() {
fmt.Fprintf(f.IO.StdOut, "New stack created with title \"%s\".\n", title)
}
s.Stop()
return nil
},
}
return stackCreateCmd
}
|