blob: c2cd5822a97e4dae241d6dfb6a12ea17bb31de9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
|