July 2018
Intermediate to advanced
354 pages
10h 57m
English
If you want to create patches for several commits, say the last three commits, you just pass on -3 to git format-patch instead of -1.
Format the latest three commits as patches in the latest-commits folder:
$ git format-patch -3 -o latest-commitslatest-commits/0001-Adds-math-pi-calculation.patchlatest-commits/0002-Adds-checker-for-prime-number.patchlatest-commits/0003-Calculate-pi-with-more-digits.patch$ ls -1 latest-commits0001-Adds-math-pi-calculation.patch0002-Adds-checker-for-prime-number.patch0003-Calculate-pi-with-more-digits.patch
Read now
Unlock full access