Hi HN, sometime in the last year someone posted a project that would modify git history in a repository based on a provided schedule. You could specify a time range, and it would go through and move commits outside of that time range. I've googled and checked the various HN search products, but I haven't been able to find it! Does anyone remember?
I am not familiar with a project that does that specifically. However, you can easily perform that type of operation with git-filter-repo and its --commit-callback flag , which lets you modify commit objects with a custom Python snippet.<p><a href="https://github.com/newren/git-filter-repo">https://github.com/newren/git-filter-repo</a>