Patches for Evolution X unofficial GSI
The script will generate .rej files alongside failed files. Find all .rej files (can be done with git status
) and apply rejections manually.
Make sure to delete .rej files after resolving rejections. After doing so, run git add .
, proceeded by git am --continue
.
If patch was already applied to the source and no .rej files were generated, run git am --skip
.
git am
git am ~/evo/patches/0001-TrebleDroid/platform_.../....patch
- If
git am
fails, attempt a 3-way merge
git am --3way ~/evo/patches/0001-TrebleDroid/platform_.../....patch
- If 3-way merge fails, generate
.rej
files and apply patches manually
git am --reject ~/evo/patches/0001-TrebleDroid/platform_.../....patch