commit 27a94c06f8b271c79031897ef4b77e630c0c4cd5 parent 4de5ed6ac2a2760139c037cf65119d54ba877419 Author: William Casarin <jb55@jb55.com> Date: Sat, 13 Oct 2018 07:39:48 -0700 doc: add contributing Diffstat:
A | CONTRIBUTING | | | 32 | ++++++++++++++++++++++++++++++++ |
1 file changed, 32 insertions(+), 0 deletions(-)
diff --git a/CONTRIBUTING b/CONTRIBUTING @@ -0,0 +1,31 @@ +Feel free to email patches to + + To: William Casarin <jb55@jb55.com> + Cc: ~jb55/public-inbox@lists.sr.ht + +Use git-format-patch and git-send-email. + + +Setup +----- + +mkdir -p patches/<branch> + +git config format.subjectPrefix 'PATCH viscal' + + + +Sending a patch +--------------- + +# replace <branch> with your branch + +git format-patch --output-directory=patches/<branch> \ + --cover-letter \ # (optional) + <branch>^ + +$EDITOR 0000-cover-letter.patch # (optional) + +git send-email --to="William Casarin <jb55@jb55.com>" \ + --cc="~jb55/public-inbox@lists.sr.ht" \ + patches/<branch>/*.patch+ \ No newline at end of file