Skip to content

Patching and Updating

Eric Kilmer edited this page Mar 27, 2023 · 5 revisions

TODO. These are rough notes for now.

Rebasing patches

See https://github.com/lifting-bits/sleigh/pull/167 for some explanation, particularly this comment https://github.com/lifting-bits/sleigh/pull/167#issuecomment-1479765517

Showing decompiler commits between bumps

git log --no-merges <old>..<new> -- Ghidra/Features/Decompiler/src/decompile Ghidra/Processors

where old is the older commit and new is the newer commit. We also skip merge commits (--no-merges) because they can be noisy. We also limit git to only look at the paths that affect the decompiler (paths after --).

Clone this wiki locally