docs: document patch apply issue

This commit is contained in:
daimond113 2025-05-03 19:29:27 +02:00
parent bc3ecd3470
commit c427565ff4
No known key found for this signature in database
GPG key ID: 640DC95EC1190354

View file

@ -100,3 +100,15 @@ Make sure not to commit or stage the changes made in the temporary directory.
Otherwise pesde may not be able to create the patch correctly. Otherwise pesde may not be able to create the patch correctly.
</Aside> </Aside>
<Aside type="note">
If you sync your patch files to a Git repository it is advised to mark said
files as binary so the line endings don't get changed, which can cause
cryptic errors when applying.
```txt title=".gitattributes"
*.patch binary
```
</Aside>