vitali64.duckdns.org:
blog fases cgit pastebin laboratory-fe moinmoinwiki
aboutsummaryrefslogtreecommitdiff
blob: 1f5bc225e20d1f42aceeeb036d71d54beb0b1961 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
Contributions

Want to contribute to `fases`? Great! Here are some recommendations to 
make sure your patch can be accepted.

Write useful commit names
-------------------------

This is important. Many people write commit names that aren't serious.
Here are examples of commit names you should **not** use:

* "jenius fix" ;
* "Update cat.c" ;
* "aaa" ;
* "replace horrible head with okay head".

There are many other bad commit names you shouldn't use.
Here are examples of commit names you **should** use:

* "core/wc: Error handling." ;
* "Makefile: Fix bugs in the test suite" ;
* "sh: Move error handling to parseCommand()".

Commit descriptions can also be added, but they're not needed:

* "sh: Add support for comments" ;

	Example:
	$ echo 'Hello World' # Hello World
	This is now possible.

* "docs/: Finally add a license"

	The license used is a slightly-modified version of the FreeBSD Documentation
	permissive License, compatible with the GNU Free Documentation License.

The coding style
----------------

See [the coding style](/CODING_STYLE.html)

Use `git send-email`
--------------------

`fases` is mirrored on lots of Git forges, including some that support 
"Pull Requests". The usual, prefered way of sending patches is to use 
`git send-email`. Please do prefix the repo you want to patch 
('[PATCH fases.git]').

See [git-send-email.io](https://git-send-email.io)

Sign-off your commits
---------------------

Signing-off your commits means that you agree to the coding style and that 
you should be nice to people when responding to feedback.
We require you to sign-off your commits, like so:

	$ git commit -s # -s means "sign-off"

If your patch fully complies with what was said before then send it! If
you're not sure your patch complies with all that then send it anyway. We 
do want to see your patch!