Apply patches

Notes

  • Similar to cherry-pick, apply the changes

  • Commit history will be transferred

Command

  • git am <patch-file> for a single file

  • git am <output-dir>/*.patch will apply all .patch files with the right order (implied in the file name)

Last updated