2023-04-12 09:09:14 +02:00

19 lines
370 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var stashCmd = &cobra.Command{
Use: "stash",
Short: "Stash the changes in a dirty working directory away",
Run: func(cmd *cobra.Command, args []string) {},
GroupID: groups[group_main].ID,
}
func init() {
carapace.Gen(stashCmd).Standalone()
rootCmd.AddCommand(stashCmd)
}