'How to find the list of changes from a specific branch from specific date to specific date in github

I would like to find out the list of changes/files from a specific branch from specific date to specific date in github using command or any way.So that I will check the commits/changes what ever is done and find out the impacts to my application which is having issues in the production.Kindly help me on this. I tried to clone specific branch code and trying to check git log commands but nothing seems to be worked out.



Solution 1:[1]

Simply just switch branch you want to check commits. git checkout branchName

And then type git log —since=‘Feb 1 2022’ —until=‘Feb 28 2022’

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Samitha Wijesekara