Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Latest commit

 

History

History
26 lines (17 loc) · 1.03 KB

CONTRIBUTING.md

File metadata and controls

26 lines (17 loc) · 1.03 KB

How to contribute

We need your help!

You can submit a bug report or find feature requests under Issues.

Submitting changes

Please send a Pull Request to pimak-worlds with a clear list of what you've done (read more about pull requests). Please follow our coding conventions (below) and make sure all of your commits are atomic (one feature per commit). We use conventional commits.

Always rebase your branch if the master branch has newer code:

$ git checkout -b feature-branch
$ git checkout feature-branch
(...edit, add and commit files...)
$ git fetch https://github.com/7185/pimak-worlds.git
$ git rebase FETCH_HEAD
$ git push

Note: if you already pushed your new branch, just do git push -f to overwrite it.

Coding conventions

We try to follow the Google C++ Style Guide.