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 seems to work pretty nicely:
git diff --no-prefix -U1000
With the caveat:
The -U flag specifies lines of context. You might need to increase this if there are more than 1000 lines between your changes.
-U