Skip to content
Closed
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
2 changes: 1 addition & 1 deletion cmd/entire/cli/repo_mirror.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func newRepoMirrorCreateCmd() *cobra.Command {
"(upstream, cluster). The cluster-host defaults to " +
defaultClusterHost + " when omitted.",
Example: " entire repo mirror create github.com/octocat/hello-world\n" +
" entire repo mirror create github.com/octocat/hello-world eu-west-1.entire.io",
" entire repo mirror create github.com/octocat/hello-world aws-us-east-2.entire.io",
Args: cobra.RangeArgs(1, 2),
RunE: func(cmd *cobra.Command, args []string) error {
owner, repo, err := parseGitHubURL(args[0])
Expand Down
2 changes: 1 addition & 1 deletion cmd/entire/cli/repo_mirror_collaborators.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func newRepoMirrorCollaboratorsAddCmd() *cobra.Command {
"(pull works without push-through). The cluster-host defaults to " +
defaultClusterHost + " when omitted.",
Example: " entire repo mirror collaborators add github.com/acme/widget github:alice --role writer\n" +
" entire repo mirror collaborators add github.com/acme/widget github:alice eu-west-1.entire.io --role reader",
" entire repo mirror collaborators add github.com/acme/widget github:alice aws-us-east-2.entire.io --role reader",
Args: cobra.RangeArgs(2, 3),
RunE: func(cmd *cobra.Command, args []string) error {
owner, repo, err := parseGitHubURL(args[0])
Expand Down
Loading