How to create a patch suitable for viewing in a crucible?
git diff branch master --no-prefix > patch
This generates only 3 lines of context. Therefore i do the following
git diff --unified=2000 branch master --no-prefix > patch
We hope that all files will have less than 2000 lines. Is there a way to tell git to include all lines in the file for the patch without specifying maximum lines?
git diff code-review atlassian-crucible
balki Nov 29 2018-12-12T00: 00Z
source share