I have the following folder structure:
| folder1
│ ├── file1
│ ├── file2
│ ├── file3
│ ├── file4
│ ├── file5
│ ├── fileN
| folder2
│ ├── file1
│ ├── file2
│ ├── file3
│ ├── file4
│ ├── file5
│ ├── fileN
I would like to check the differences between files 1, 2, 5 and 15. Is there a way to use git diff to check the differences between these files, without being:
git diff folder1/file1 folder2/file1
git diff folder1/file2 folder2/file2
git diff folder1/file5 folder2/file5
Is it possible to write the file names into a document and ask git to check the differences?
Best Regards