Как создать патч -файл между 2 ветвями git
git diff master Branch1 > ../patchfile
git checkout Branch2
git apply ../patchfile
Different Dotterel
git diff master Branch1 > ../patchfile
git checkout Branch2
git apply ../patchfile