Всем привет.
Задача скопировать измененные файлы в отдельную папку.
Для этого я получаю файлы которые мне нужно скопировать через гит git diff --name-status branch1 branch2
M web-app/templates/path1/file1.html
M web-app/templates/path1/file2.html
M web-app/templates/path1/file3.html
M web-app/templates/path1/file4.html
M web-app/templates/modals/file.html
и теперь их нужно скопировать в отдельную папку deploy
deploy/web-app/templates/path1/file1.html
deploy/web-app/templates/path1/file2.html
deploy/web-app/templates/path1/file3.html
deploy/web-app/templates/path1/file4.html
deploy/web-app/templates/modals/file.html
Может кто знает как разбросать эти файлы так?