On 01/06/16 16:22, debbie10t wrote: > At this time, I am not suitably versed with git to submit a patch, > I am working on it if you choose to wait .. but it is something I > will continue to learn even if somebody else submits a patch before me.
Super quick git crash course to edit the openvpn.8 man page # First time using git $ git config --global user.name "Your Full Name" $ git config --global user.email y...@full-email-address.com # Grab a copy of the openvpn git repos $ git clone git://git.code.sf.net/p/openvpn/openvpn.git $ cd openvpn $ cd doc $ vim openvpn.8 # Or your favourite editor. Make changes and save $ git add openvpn.8 $ git commit -s # Write a good commit message $ git format-patch HEAD~1 Voila, you have now a file named 0001-$SOMETHING.patch. This can be mailed to the mailing list. Either as an attacment, or send it via some mailer program (f.ex. git send-email). If you start sending patches more regularly, we generally prefer that you use git send-email. For a more comprehensive git course, have a look here: <http://community.openvpn.net/openvpn/wiki/GitCrashCourse> -- kind regards, David Sommerseth ------------------------------------------------------------------------------ What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic patterns at an interface-level. Reveals which users, apps, and protocols are consuming the most bandwidth. Provides multi-vendor support for NetFlow, J-Flow, sFlow and other flows. Make informed decisions using capacity planning reports. https://ad.doubleclick.net/ddm/clk/305295220;132659582;e _______________________________________________ Openvpn-users mailing list Openvpn-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openvpn-users