I would like to do this:
git --git-dir=../navcl/.git format-patch -k -1 --stdout 607780ee9 \
| nano \
| git am -3 -k
The issue is, in my other git dir, a file path is different, so I need to edit this in the patch. I could go via a file, but is there the option to edit the piping command in an editor? My use of nano here doesn't actually work, since I'm not aware how to get it to write to stdout.