School App is a web application that allows users to create and manage the califications of their students.
This documentation is made with Markdown and GitHub Pages using Jekyll Theme Cayman.
- Fork the digdata-eirl.github.io repository.
- Create a new branch for each feature, fix or improvement.
- Send a pull request from each feature branch to
develop
branch.
It is very important to separate new features or improvements into separate feature branches, and to send a pull request for each branch.
This allow us to review and pull in new features or improvements individually.
All pull requests SHOULD adhere to the Conventional Commits specification.
Conventional Commits use the GitHub flow as main versioning workflow.
The contribution guideline is derived from ConventionalCommits.org
When you have the Fork repository cloned on your PC, the first thing you have to do is create a remote to DigData-EIRL/digdata-eirl.github.io
using: git remote add upstream https://github.com/DigData-EIRL/digdata-eirl.github.io.git
(You only have to do this the first time you clone the repository).
Then every time a change is made in DigData-EIRL/digdata-eirl.github.io
and you want to bring it to your fork use the following commands:
git pull upstream develop
git push
Note: remember to be located within the branch you wanna update.
As a good practice, it is always recommended to execute these two commands before starting to work, (just in case there is any change):
git pull upstream develop
gil pull