в мерзавцеЯ ищу лучший подход, чтобы объединить мастер с веткой объектов, но чтобы пропустить файлы [path_to_file_a] / a и [path_to_file_b] / b
идеи?
Thx.
Один подход:
git log # "q" to quit # note the first commit hash (for HEAD commit), let's call it <hash> git merge master git checkout <hash> [path_to_file_a]/a git checkout <hash> [path_to_file_b]/b
Для фиксации результата:
git commit -a