Skip to content

Latest commit

 

History

History
72 lines (47 loc) · 3.54 KB

CONTRIBUTING.md

File metadata and controls

72 lines (47 loc) · 3.54 KB

Contributing to Operating Systems OER

These are recommendations when contributing to the contents of the Operating Systems OER repository. They consider contributions to both actual content (mostly Markdown) and support code (demo, lab activities) made via Git.

First Steps

Some good first steps and best practices when using Git are explained here:

Language

All of our content is developed in English. This means we use English for content, support code, commit messages, pull requests, issues, comments, everything.

Content Writing Style

This section addresses the development of session content and other Markdown files.

Write each sentence on a new line. This way, changing one sentence only affects one line in the source code.

Use the first person plural when writing documentation and tutorials. Use phrases like "we run the command / app", "we look at the source code", "we find the flag".

Use the second person for challenges and other individual activities. Use phrases like "find the flag", "run this command", "download the tool".

Images

Images and diagrams would ideally be animated on slides. Aim to use reveal.js features to animate drawing of diagrams.

If reveal.js drawing is difficult, use draw.io to create diagrams. Ideally you would "animate" those diagrams by creating multiple incremental versions of the diagram and adding each to a slide; when browsing slides pieces of these diagrams will "appear" and complete the final image, rendering an animation-like effect.

For text where no animation is required, use diagrams / images created with draw.io. If using external images / diagram, make sure they use a CC BY-SA license and give credits (mention author and / or add link to the image source).

Issues

When opening an issue, please clearly state the problem. Make sure it's reproducible. Add images if required. Also, if relevant, detail the environment you used (OS, software versions). Ideally, if the issue is something you could fix, open a pull request with the fix.

Discussions

Use GitHub discussions for bringing up ideas on content, new chapters, new sections. Provide support to others asking questions and take part in suggestions brought by others. Please be civil when taking part in discussions.

Pull Requests

For pull requests, please follow the GitHub flow: create a fork of the repository, create your own branch, do commits, push changes to your branch, do a pull request (PR). The destination branch of pull requests is the default master branch.

Make sure each commit corresponds to one code / content change only. If there are multiple commits belonging to a given change, please squash the commits.

Also make sure one pull request covers only one topic.

Use commit messages with verbs at imperative mood: "Add README", "Update contents", "Introduce feature". Prefix each commit message with the chapter it belongs to: software-stack, data, compute, io, app-interact. How a good commit message should look like: https://cbea.ms/git-commit/

The use of -s / --signoff when creating a commit is optional, but strongly recommended.