Alan M=
ackenzie <
acm@muc.de> schrieb am So=
., 21. Mai 2017 um 18:10=C2=A0Uhr:
=
How is it not a git-formatted patch?=C2=A0 I created it with
=C2=A0 =C2=A0 $ git diff <filenames> > diff.20170520.diff
, from the top level Emacs directory.
"Git-formatted patch" means "patch produced by git format=
-patch". A typical workflow is:
git checkout =
-b NEW-BRANCH master =C2=A0# start new topic branch off master
# =
make changes
git commit
git format-patch master =C2=A0#=
create patch files for all commits since master
T=
he patch files thus produced can be applied using 'git am'. To send=
them directly to the mailing list, you can use 'send-email' instea=
d of 'format-patch'.
--001a113d3fb88f42fc05500bf987--