Update pr.go

This commit is contained in:
Ravikanth C 2020-07-06 19:40:49 +05:30
parent 742bb15583
commit 143c80c56c

View file

@ -107,13 +107,13 @@ var prReopenCmd = &cobra.Command{
}
var prMergeCmd = &cobra.Command{
Use: "merge [<number> | <url> | <branch>]",
Args: cobra.MaximumNArgs(1),
Short: "Merge a pull request",
Long: `Merge a pull request by providing the pull request number or url or the branch.
By default, the source branch gets deleted after the merge is complete.
If the source branch needs be retained, '--delete-branch=false' should be specified.`,
Args: cobra.MaximumNArgs(1),
RunE: prMerge,
}
var prReadyCmd = &cobra.Command{