git - How do you apply patch file downloaded from gerrit? -
in gerrit
under download section change there section allows download patch-file:
using git apply
results in:
$ git apply 441eb56b.diff.base64 fatal: unrecognized input
what command should use apply patch?
this base64 encode file (see here). need decode file first (see here). think it's easier use cherry pick method instead.
Comments
Post a Comment