Re: How do those of you who use Git produce patches

2016-06-24 Thread Nick Burch

On Fri, 24 Jun 2016, Murphy, Mark wrote:
I have a small change to xwpf that I am working on in a local Git 
repository, but I need to know how to create a patch. The documentation 
on the How to contribute page isn't particularly helpful.


The easiest is probably to fork the POI github repo, push the changes to 
your fork, then open a pull request


Otherwise, something like this should give you all the patches pending:
   git diff --stat --cached origin/master

And this for the diffs:
   git diff --cached origin/master

Nick

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



How do those of you who use Git produce patches

2016-06-24 Thread Murphy, Mark
I have a small change to xwpf that I am working on in a local Git repository, 
but I need to know how to create a patch. The documentation on the How to 
contribute page isn't particularly helpful.