Cómo crear un archivo de parche entre 2 ramas git

git diff master Branch1 > ../patchfile
git checkout Branch2    
git apply ../patchfile
Different Dotterel