Bob Kast wrote: > I use git format-patch to create the patches? Or git send-email to send them to the mailing list directly.
> How do I specify all the patches, > or do I run git format-patch each time I do a commit? There are many ways. One way is: git format-patch origin/master.. (or for send-email) git send-email origin/master.. The two trailing periods are important, they signify a range. An empty range end implies HEAD, which always refers to the most recent commit on the currently checked-out branch. //Peter _______________________________________________ libssh2-devel http://cool.haxx.se/cgi-bin/mailman/listinfo/libssh2-devel
