cmdtree

A trie command launcher for X11
git clone git://jb55.com/cmdtree
Log | Files | Refs | README | LICENSE

commit 775380ba5d29d9b4057440e6a86f69e0d0213585
parent 37881fc5c5bd1047b703f6b3ad5f851c7021b808
Author: William Casarin <jb55@jb55.com>
Date:   Wed, 17 Oct 2018 10:23:46 -0700

CONTRIBUTING

Diffstat:
ACONTRIBUTING | 50++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+), 0 deletions(-)

diff --git a/CONTRIBUTING b/CONTRIBUTING @@ -0,0 +1,50 @@ + +Reporting bugs +============== + +Please submit bugs to our issue tracker here: + + https://todo.sr.ht/~jb55/cmdtree + +You can also send questions to the public mailing list: + + To: ~jb55/public-inbox@lists.sr.ht + Subject: [cmdtree] <question> + + +Contributing code +================= + +Feel free to email patches to: + + ~jb55/public-inbox@lists.sr.ht + +Use git-format-patch and git-send-email. + + +Getting started +--------------- + +replace <branch> with your branch: + + mkdir -p patches/<branch> + + git config format.subjectPrefix 'PATCH cmdtree' + + +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="~jb55/public-inbox@lists.sr.ht" \ + patches/<branch>/*.patch + +