Are there ways to retrieve information for commits in a given repo/branch generated between: Two tags, Two commits, or any of the combination of those? Also, how would I go about making a tool that would have the repo name, branch name and any of those two other options to push out to a text file?
So far I have been able to get a command from git log, example: git log --since='8/17/2021' --until='8/23/2021' > C:\Temp\Git_Output\log2.txt. This lets me obtain a commit change from dates 8/17/2021 until 8/23/2021 and sends it in a text format to that specified file path.
Is there a way I can do any of the above using a powershell script?