mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-05 15:32:53 +00:00
added git-clear-soft (#2538)
This commit is contained in:
parent
6599193d65
commit
401c675bac
22
completers/git-clear-soft_completer/cmd/root.go
Normal file
22
completers/git-clear-soft_completer/cmd/root.go
Normal file
@ -0,0 +1,22 @@
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"github.com/carapace-sh/carapace"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
var rootCmd = &cobra.Command{
|
||||
Use: "git-clear-soft",
|
||||
Short: "Soft clean up a repository",
|
||||
Long: "https://github.com/tj/git-extras/blob/master/Commands.md#git-clear-soft",
|
||||
Run: func(cmd *cobra.Command, args []string) {},
|
||||
}
|
||||
|
||||
func Execute() error {
|
||||
return rootCmd.Execute()
|
||||
}
|
||||
func init() {
|
||||
carapace.Gen(rootCmd).Standalone()
|
||||
|
||||
rootCmd.Flags().Bool("help", false, "show help")
|
||||
}
|
7
completers/git-clear-soft_completer/main.go
Normal file
7
completers/git-clear-soft_completer/main.go
Normal file
@ -0,0 +1,7 @@
|
||||
package main
|
||||
|
||||
import "github.com/carapace-sh/carapace-bin/completers/git-clear-soft_completer/cmd"
|
||||
|
||||
func main() {
|
||||
cmd.Execute()
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user