diff options
author | Kim <kim.sidney@gmail.com> | 2019-03-05 21:38:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-05 21:38:57 +0100 |
commit | 4f10a15612adb74163cf7b28bd0b4f0ef99f1223 (patch) | |
tree | 7c7f97c1a2158bae1e5ee0b335c5ab4a461ba980 | |
parent | 650fcb9ec61df80af97d871ebaa9799c99fd0354 (diff) | |
parent | 45d4cd67c2cbc1104a6842aac15fb29f262bb4f1 (diff) | |
download | vyos-documentation-4f10a15612adb74163cf7b28bd0b4f0ef99f1223.tar.gz vyos-documentation-4f10a15612adb74163cf7b28bd0b4f0ef99f1223.zip |
Merge pull request #13 from rebortg/create-contributing
create CONTRIBUTING.md
-rw-r--r-- | CONTRIBUTING.md | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..9dcaeb1b --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,41 @@ +# Contributor's Guide + +1. fork the project on GitHub https://github.com/vyos/vyos-documentation +2. clone the fork +3. create a a new branch for your work. You can use a name that describes what you do. + ```shell + git checkout -b fix-vxlan-typo + ``` +4. make your changes. + + Please check the documation, if you don't familiar with [sphinx-doc](http://http://www.sphinx-doc.org) or [reStructuredText](http://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html) + + Note the following RFCs, which describe the reserved public IP addresses and autonomous system numbers for the documentation. Please don't use other public address space. + + * [RFC5737](https://tools.ietf.org/html/rfc5737) + * [RFC3849](https://tools.ietf.org/html/rfc3849) + * [RFC5389](https://tools.ietf.org/html/rfc5398) + + + +5. add the modified files + ```shell + git add path/to/filname + ``` + or add all unstaged files + ```shell + git add . + ```` +6. commit your changes + ```shell + git commit -m "rename vxlan set syntax" + ``` +7. push your commits to your GitHub project: + + ```shell + git push -u origin fix-vxlan-typo + ``` +8. Submit a pull request. + + In GitHub, visit the main repository and you should see a banner + suggesting to make a pull request. Fill out the form and describe what you do.
\ No newline at end of file |