Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 333 Bytes

File metadata and controls

15 lines (8 loc) · 333 Bytes

Git patch

See what changes will be made if the patch is applied;

git apply --stat example.patch

Test the patch before applying it;

git apply --check example.patch

Apply the patch. Using 'am' instead of 'apply' because the git history will show who applied the patch

git am --signoff < example.patch