carapace-bin/git_completer/cmd/get_tar_commit_id_generated.go
2020-04-20 22:58:56 +02:00

18 lines
315 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var get_tar_commit_idCmd = &cobra.Command{
Use: "get-tar-commit-id",
Short: "Extract commit ID from an archive created using git-archive",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
rootCmd.AddCommand(get_tar_commit_idCmd)
}