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
_, _=fmt.Fprintf(stderr, "Error querying snapshots for --since date: %v\n", err)
153
+
_, _=fmt.Fprintf(stderr, "Error querying snapshots for --report-since date: %v\n", err)
154
154
return1
155
155
}
156
156
iflen(sinceSnapshots) ==0 {
157
-
_, _=fmt.Fprintf(stderr, "No cached snapshot found for date %s (try running without --since first to build cache)\n", sinceDate.Format("2006-01-02"))
157
+
_, _=fmt.Fprintf(stderr, "No cached snapshot found for date %s (try running without --report-since first to build cache)\n", sinceDate.Format("2006-01-02"))
fs.BoolVar(&showVersion, "version", false, "Print version and exit")
376
376
fs.IntVar(&cfg.Days, "sync-lookback-days", 30, "How far back to fetch GitHub data (1-365 days, doesn't affect report filtering)")
377
-
fs.StringVar(&cfg.Since, "since", "", "Generate report from historical data (e.g., '2026-01-15' or '7d' for 7 days ago)")
377
+
fs.StringVar(&cfg.ReportSince, "report-since", "", "Generate report from historical data starting from this date (e.g., '2026-01-15' or '7d' for 7 days ago)")
378
378
fs.BoolVar(&cfg.Offline, "offline", false, "Use only cached data, skip GitHub API calls")
0 commit comments