Skip to content

Commit

Permalink
git: merge-one-file
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Oct 29, 2023
1 parent 427d0b8 commit e960e12
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 merge_one_fileCmd = &cobra.Command{
var mergeOneFileCmd = &cobra.Command{
Use: "merge-one-file",
Short: "The standard helper program to use with git-merge-index",
Run: func(cmd *cobra.Command, args []string) {},
GroupID: groups[group_low_level_helper].ID,
}

func init() {
carapace.Gen(merge_one_fileCmd).Standalone()
carapace.Gen(mergeOneFileCmd).Standalone()

rootCmd.AddCommand(merge_one_fileCmd)
rootCmd.AddCommand(mergeOneFileCmd)
}

0 comments on commit e960e12

Please sign in to comment.