1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/CONTRIBUTING.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
688 B
Markdown
Raw Permalink Normal View History

2016-09-14 04:31:49 +02:00
# Contribution guidelines
<!--
SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
SPDX-License-Identifier: Apache-2.0
-->
2018-07-03 09:47:11 +02:00
## Coding standards
2018-07-03 09:47:11 +02:00
We are following the [LLVM C++ Coding Standards](https://llvm.org/docs/CodingStandards.html).
2018-07-03 09:47:11 +02:00
## Always work on feature branches
2016-09-14 04:31:49 +02:00
Please branch from `master` to create a new _feature_ branch.
2016-09-14 04:31:49 +02:00
Please create a new _feature_ branch for every new feature or fix.
## Do not commit directly to `master`.
2016-09-14 04:31:49 +02:00
Use your _feature_ branch.
Please rebase your work against the `develop` before submitting a merge reqeuest.
2018-07-03 09:47:11 +02:00
## Make the CI happy :-)
2016-09-14 04:31:49 +02:00
Only branches which pass the CI can be merged.