Git download source from a specific date

* Download repo git clone URL-TO-REPO
* Narrow it down the commit that matches what you're looking for git log --after="2021-05-17 13:00" --before="2021-05-17 14:00"
* Reset repo to matching commit git reset --hard COMMIT-HASH-GOES-HERE
I guess that's what you're looking for?
 
Back
Top