Comment créer un fichier de patch entre 2 branches 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