I have a log file in my repo. for every component its a different one but called all the same (log.txt) I want to download these log files from a specific (sha/gittag). Because I need the specific version of this files.
Because of the same name, i thout about saving the component names (comp1 etc.) before the log files. comp1_log.txt. In the end I will have a log.zip.
My folder structure looks like this:
Tool/
├── comp1/
│ ├── log.txt
└── comp2/
├── log.txt
comp3/
├── log.txt
My question: How can I get these files with this condition (specific sha or gittag)?