How to create patch suitable for reviewing in crucible?
git diff branch master --no-prefix > patch
This generates only 3 lines of context. S
This worked for me on macOS:
git diff -U$(wc -l main.htm | xargs)
see "How to trim whitespace from a Bash variable?"