-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
60 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package cmd | ||
|
||
import ( | ||
"github.com/carapace-sh/carapace" | ||
"github.com/carapace-sh/carapace-bin/pkg/actions/net" | ||
"github.com/carapace-sh/carapace-bin/pkg/actions/tools/git" | ||
"github.com/carapace-sh/carapace-bridge/pkg/actions/bridge" | ||
"github.com/carapace-sh/carapace/pkg/style" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
var sendPackCmd = &cobra.Command{ | ||
Use: "send-pack", | ||
Short: "Push objects over Git protocol to another repository", | ||
Run: func(cmd *cobra.Command, args []string) {}, | ||
GroupID: groups[group_low_level_synching].ID, | ||
} | ||
|
||
func init() { | ||
carapace.Gen(sendPackCmd).Standalone() | ||
|
||
sendPackCmd.Flags().Bool("all", false, "update all heads that locally exist") | ||
sendPackCmd.Flags().Bool("atomic", false, "use an atomic transaction for updating the refs") | ||
sendPackCmd.Flags().Bool("dry-run", false, "do everything except actually send the updates") | ||
sendPackCmd.Flags().String("exec", "", "same as --receive-pack=<git-receive-pack>") | ||
sendPackCmd.Flags().Bool("force", false, "disable ancestor check") | ||
sendPackCmd.Flags().Bool("no-signed", false, "do not GPG-sign the push request") | ||
sendPackCmd.Flags().String("push-option", "", "pass the specified string as a push option") | ||
sendPackCmd.Flags().String("receive-pack", "", "path to the git-receive-pack program on the remote end") | ||
sendPackCmd.Flags().String("signed", "", "GPG-sign the push request") | ||
sendPackCmd.Flags().Bool("stdin", false, "take the list of refs from stdin, one per line") | ||
sendPackCmd.Flags().Bool("thin", false, "send a \"thin\" pack") | ||
sendPackCmd.Flags().Bool("verbose", false, "run verbosely") | ||
rootCmd.AddCommand(sendPackCmd) | ||
|
||
carapace.Gen(sendPackCmd).FlagCompletion(carapace.ActionMap{ | ||
"push-option": bridge.ActionCarapaceBin("git", "push").Split(), | ||
"signed": carapace.ActionValues("true", "false", "if-asked").StyleF(style.ForKeyword), | ||
}) | ||
|
||
carapace.Gen(sendPackCmd).PositionalCompletion( | ||
carapace.ActionMultiPartsN(":", 2, func(c carapace.Context) carapace.Action { | ||
switch len(c.Parts) { | ||
case 0: | ||
return net.ActionHosts().Suffix(":") | ||
default: | ||
return carapace.ActionValues() | ||
} | ||
}), | ||
) | ||
|
||
carapace.Gen(sendPackCmd).PositionalAnyCompletion( | ||
carapace.ActionCallback(func(c carapace.Context) carapace.Action { | ||
if sendPackCmd.Flag("all").Changed { | ||
return carapace.ActionValues() | ||
} | ||
return git.ActionRefs(git.RefOption{}.Default()).FilterArgs().Shift(1) | ||
}), | ||
) | ||
} |
This file was deleted.
Oops, something went wrong.