getting a svn compatible patch diff from the latest commit in a git branch
Posted by jpluimers on 2020/09/03
git diff --no-prefix @~
Via various sources:
- The
@~
syntax to get the previous commit - The
--no-prefix
to make the patch svn compatible
–jeroen
Leave a Reply