Skip to content

Commit

Permalink
Merge pull request #1942 from rsteube/git-mergeonefile
Browse files Browse the repository at this point in the history
git: merge-one-file
  • Loading branch information
rsteube authored Oct 29, 2023
2 parents 427d0b8 + e960e12 commit 3c1864c
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 3c1864c

Please sign in to comment.