Skip to content

Commit

Permalink
git: get-tar-commit-id
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Aug 17, 2024
1 parent 3a9703d commit 3e18bc7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import (
"github.com/spf13/cobra"
)

var get_tar_commit_idCmd = &cobra.Command{
var getTarCommitIdCmd = &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) {},
GroupID: groups[group_low_level_interrogator].ID,
}

func init() {
carapace.Gen(get_tar_commit_idCmd).Standalone()
carapace.Gen(getTarCommitIdCmd).Standalone()

rootCmd.AddCommand(get_tar_commit_idCmd)
rootCmd.AddCommand(getTarCommitIdCmd)
}

0 comments on commit 3e18bc7

Please sign in to comment.