Home > OS >  is there any way to check which commits were merged to a branch on a specific day?
is there any way to check which commits were merged to a branch on a specific day?

Time:07-29

I have a master branch and another named release/system2. I had several commits pushed to the master branch, and two days ago, I made a merge to release/system2. After that, system2 broke the system due to some issues in the latest code in the master branch. Is there any way I could check which commits were merged into the release/system2 branch two days ago, ignoring the commits merged before that specific day?

CodePudding user response:

Check all git log by date range:

git log --pretty=format:"           
  • Related