Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

git: checkout-index #1937

Merged
merged 1 commit into from
Oct 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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().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")
checkoutIndexCmd.Flags().BoolS("z", "z", false, "paths are separated with NUL character")
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.