Submitting patches - git format-patch and git diff

2012-05-23 Thread Dave Sann
Not directly clojure related - but input needed I have master I have mybranch I have a bunch of commits on mybranch. I can create an attributed patch with "git format-patch master". This includes all commits on the branch, including merges and updates from master. I can create an unattributed

Re: Submitting patches - git format-patch and git diff

2012-05-23 Thread Dave Sann
A good answer if anyone has this issue: Having a clean history with complete/logical features is recommended. However, in development branches we can make many small commits and the history may not be clean. That's fine, as long as we clean the history before merging into master. This is where in

Re: Submitting patches - git format-patch and git diff

2012-05-23 Thread Tassilo Horn
Dave Sann writes: > Having a clean history with complete/logical features is recommended. > However, in development branches we can make many small commits and > the history may not be clean. That's fine, as long as we clean the > history before merging into master. You can also try to keep your