2014-05-26 04:19:43 +02:00
|
|
|
Contributing
|
|
|
|
============
|
|
|
|
If you would like to contribute cheetsheets or program functionality, please
|
2017-09-05 19:48:06 +02:00
|
|
|
fork this repository, make your changes, and submit a pull request against the
|
|
|
|
`master` branch.
|
2014-05-26 04:19:43 +02:00
|
|
|
|
2017-02-28 23:45:53 +01:00
|
|
|
|
|
|
|
## Python standards ##
|
2016-02-17 20:12:58 +01:00
|
|
|
Python code should conform to [PEP 8][].
|
2014-05-26 04:19:43 +02:00
|
|
|
|
2016-02-17 20:12:58 +01:00
|
|
|
|
2017-02-28 23:45:53 +01:00
|
|
|
## Cheatsheet Format ##
|
|
|
|
Please pattern your cheatsheets after the following:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# To extract an uncompressed archive:
|
|
|
|
tar -xvf /path/to/foo.tar
|
|
|
|
|
|
|
|
# To create an uncompressed archive:
|
|
|
|
tar -cvf /path/to/foo.tar /path/to/foo/
|
|
|
|
|
|
|
|
# To extract a .gz archive:
|
|
|
|
tar -xzvf /path/to/foo.tgz
|
|
|
|
```
|
2014-05-26 04:19:43 +02:00
|
|
|
|
2017-09-05 19:48:06 +02:00
|
|
|
If you are submitting a cheatsheet that contains side-by-side columns of text,
|
|
|
|
please align the columns using spaces rather than tabs.
|
|
|
|
|
2014-05-26 04:19:43 +02:00
|
|
|
[PEP 8]: http://legacy.python.org/dev/peps/pep-0008/
|