-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
content: add developers and contributing section
- Loading branch information
1 parent
f081a53
commit 0f5366e
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
+++ | ||
title = "Developers" | ||
description = "Developer documentation." | ||
date = 2022-09-13T23:30:00+00:00 | ||
sort_by = "weight" | ||
weight = 1 | ||
template = "docs/section.html" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
+++ | ||
title = "Contributing" | ||
description = "Contribution Guidelines." | ||
date = 2022-09-13T22:27:00+10:00 | ||
template = "docs/page.html" | ||
sort_by = "weight" | ||
weight = 0 | ||
draft = false | ||
[extra] | ||
lead = 'Our software and documentation are open for contributions - join us in developing the future!' | ||
toc = true | ||
top = false | ||
+++ | ||
|
||
## Contribution Pathways | ||
|
||
- [Blue Robotics](https://github.com/bluerobotics/software-guidelines) | ||
- [ArduPilot](https://ardupilot.org/dev/docs/contributing.html) | ||
- [Top Contributors](https://github.com/ardupilot/ardupilot#top-contributors) | ||
- [How to Get Involved](https://github.com/ardupilot/ardupilot#how-to-get-involved) | ||
- [QGroundControl](https://dev.qgroundcontrol.com/master/en/contribute/) | ||
- [MAVLink](https://mavlink.io/en/contributing/contributing.html) | ||
|
||
## This Documentation | ||
|
||
Add a new section / version via a repository/branch as a submodule | ||
``` | ||
git submodule add -b <branch-name> --name <section-name> <repository url> <path/to/desired/location> | ||
``` | ||
|
||
### In General | ||
1. Fork the repo | ||
1. make a new branch for development | ||
1. submit a pull request to the original repo | ||
1. make changes as relevant | ||
1. clean up commits with an interactive rebase and force push | ||
1. sync your repo branch with the upstream branch once the PR is merged |