You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flag.BoolVar(&loop, "loop", false, "continue migrating until canceled")
101
105
flag.BoolVar(&report, "report", false, "report on primitives to be migrated instead of beginning migration")
102
106
103
107
flag.BoolVar(&deleteExistingRepos, "delete-existing-repos", false, "whether existing repositories should be deleted before migrating")
104
108
flag.BoolVar(&enablePullRequests, "migrate-pull-requests", false, "whether pull requests should be migrated")
105
109
flag.BoolVar(&renameMasterToMain, "rename-master-to-main", false, "rename master branch to main and update pull requests (incompatible with -rename-trunk-branch)")
106
110
flag.BoolVar(&skipInvalidMergeRequests, "skip-invalid-merge-requests", false, "when true, will log and skip invalid merge requests instead of raising an error")
111
+
flag.BoolVar(&showVersion, "version", false, "output version information")
107
112
108
113
flag.StringVar(&githubDomain, "github-domain", defaultGithubDomain, "specifies the GitHub domain to use")
109
114
flag.StringVar(&githubRepo, "github-repo", "", "the GitHub repository to migrate to")
0 commit comments