Something went wrong on our end
Forked from
cloud / documentation
155 commits behind, 47 commits ahead of the upstream repository.
-
Boris Parak authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CONTRIBUTE.md 1.68 KiB
How To Contribute
Working with our documentation requires the following tools:
- git for version control
- nodejs and gitbook for content management
This documentation is written in the Markdown markup language.
# Debian
apt-get install nodejs git
# CentOS
yum install nodejs git
# Fedora
dnf install nodejs git
Or see NodeJS Documentation for distro-specific instructions.
Work-flow Overview
- Fork & clone repository
- Create a branch
- Commit your changes
- Push to the branch
- Create a Merge Request with the content of your branch
Fork Repository
See GitLab @ ICS MU for details. This will create your own clone of our repository where you will be able to make changes. Once you are happy with your changes, use GitLab to submit them to our original repository.
Clone Repository
# after creating your own copy of the repository on GitLab
git clone git@gitlab.ics.muni.cz:${GITLAB_USER}/documentation.git
Create New Branch
# in `documentation`
git checkout -b my_change
Install GitBook
npm install gitbook-cli -g
# in `documentation`
gitbook install
This step MAY require sudo
depending on your system and NodeJS installation method.
Edit GitBook
# in `documentation`
gitbook serve
Edits will be show live in your browser window, no need to refresh.
Commit and Push Changes
git commit -am "My updates"
git push origin my_change
Submit Changes
Create a Merge Request via GitLab @ ICS MU.