Can I filter the graph by specific date range? #186
-
|
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
hii @BittuChan, I think there's no built-in date filtering in the tool currently. But you can work around it by filtering commits before running the analysis. If you're analyzing a local repo, you can use git to filter by date: Then modify the tool to only process those commit SHAs. It's not ideal, but works for now. |
Beta Was this translation helpful? Give feedback.
-
|
Then ran the analysis on that. Graph is much cleaner now and loads faster too. Might as well look into submitting a PR for native date filtering if I get time. Thanks for the suggestion 🙏 |
Beta Was this translation helpful? Give feedback.
hii @BittuChan, I think there's no built-in date filtering in the tool currently. But you can work around it by filtering commits before running the analysis. If you're analyzing a local repo, you can use git to filter by date:
git log --since="6 months ago" --pretty=format:"%H" > recent_commits.txtThen modify the tool to only process those commit SHAs. It's not ideal, but works for now.