Pawka's Cave in Internets
Home
Blog
TIL: Create and apply git patch
29 Dec, 2019
To create git patch execute
git format-patch HEAD^
.
To apply patch run
git apply file.patch
.
#en
#git
#til