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
fs.StringVar(&o.centralRef, "central-ref", "origin/master", "Git ref for the central branch that will be updated, used as the base for determining what commits need to be cherry-picked.")
81
83
fs.StringVar(&o.fetchMode, "fetch-mode", string(ssh), "Method to use for fetching from git remotes.")
84
+
fs.IntVar(&o.history, "history", 1, "How many commits back to start searching for missing vendor commits.")
82
85
83
86
fs.BoolVar(&o.dryRun, "dry-run", true, "Whether to actually create the pull request with github client")
84
87
fs.StringVar(&o.githubLogin, "github-login", githubLogin, "The GitHub username to use.")
@@ -164,7 +167,7 @@ func main() {
164
167
logrus.WithError(err).Fatal("could not unmarshal input commits")
0 commit comments