Quickly create patch files from fixed contrib modules

You fixed something in contrib module and you want to create quick patch from that, if it spans through multiple commits, best way to do that is to make a patch from multiple commits, to combine them into one file, write this

git format-patch -3 --stdout > access_fix.patch

which will take last 3 commits from your current HEAD and combine them into patch file.