Skip to content

Commit

Permalink
git: checkout-index
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Oct 29, 2023
1 parent ac613d5 commit c16807c
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 28 deletions.
43 changes: 43 additions & 0 deletions completers/git_completer/cmd/checkoutIndex.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
package cmd

import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)

var checkoutIndexCmd = &cobra.Command{
Use: "checkout-index",
Short: "Copy files from the index to the working tree",
Run: func(cmd *cobra.Command, args []string) {},
GroupID: groups[group_low_level_manipulator].ID,
}

func init() {
carapace.Gen(checkoutIndexCmd).Standalone()

checkoutIndexCmd.Flags().BoolS("z", "z", false, "paths are separated with NUL character")
checkoutIndexCmd.Flags().BoolP("all", "a", false, "check out all files in the index")
checkoutIndexCmd.Flags().BoolP("force", "f", false, "force overwrite of existing files")
checkoutIndexCmd.Flags().Bool("ignore-skip-worktree-bits", false, "do not skip files with skip-worktree set")
checkoutIndexCmd.Flags().BoolP("index", "u", false, "update stat information in the index file")
checkoutIndexCmd.Flags().BoolP("no-create", "n", false, "don't checkout new files")
checkoutIndexCmd.Flags().String("prefix", "", "when creating files, prepend <string>")
checkoutIndexCmd.Flags().BoolP("quiet", "q", false, "no warning for existing files and files not in index")
checkoutIndexCmd.Flags().String("stage", "", "copy out the files from named stage")
checkoutIndexCmd.Flags().Bool("stdin", false, "read list of paths from the standard input")
checkoutIndexCmd.Flags().Bool("temp", false, "write the content to temporary files")
rootCmd.AddCommand(checkoutIndexCmd)

carapace.Gen(checkoutIndexCmd).FlagCompletion(carapace.ActionMap{
"stage": carapace.ActionValues("1", "2", "3", "all"),
})

carapace.Gen(checkoutIndexCmd).PositionalAnyCompletion(
carapace.ActionCallback(func(c carapace.Context) carapace.Action {
if checkoutIndexCmd.Flag("stdin").Changed {
return carapace.ActionValues()
}
return carapace.ActionFiles()
}),
)
}
28 changes: 0 additions & 28 deletions completers/git_completer/cmd/checkout_index_generated.go

This file was deleted.

0 comments on commit c16807c

Please sign in to comment.