This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision |
| docs:guide-developer:working-with-git-email [2019/03/23 15:19] – bobafetthotmail | docs:guide-developer:working-with-git-email [2021/05/08 19:35] (current) – stokito |
|---|
| ===== Sending patches by git send-email ===== | ====== Sending patches by git send-email ====== |
| |
| Send an email to the [[https://lists.openwrt.org/mailman/listinfo/openwrt-devel|development mailing list]]. All patches need to be sent in the same format as those that are listed on [[https://patchwork.ozlabs.org/project/openwrt/list/|patchwork]]. If the patch does not get listed in patchwork then it won't get processed. | Send an email to the [[https://lists.openwrt.org/mailman/listinfo/openwrt-devel|development mailing list]]. All patches need to be sent in the same format as those that are listed on [[https://patchwork.ozlabs.org/project/openwrt/list/|patchwork]]. If the patch does not get listed in patchwork then it won't get processed. |
| | |
| Using [[https://git-scm.com/docs/git-send-email|git send-email]] is warmly recommended, as email clients tend to add spaces and screw up the formatting or add non-printable characters. | Using [[https://git-scm.com/docs/git-send-email|git send-email]] is warmly recommended, as email clients tend to add spaces and screw up the formatting or add non-printable characters. |
| |
| <code> | <code> |
| git send-email --from "..." --to "openwrt-devel@lists.openwrt.org" 001-description.patch | git send-email --from=youremail@example.com --to="openwrt-devel@lists.openwrt.org" 001-description.patch |
| </code> | </code> |
| |