When contributing, please follow the Code of Conduct.
Feel free to submit issues and enhancement requests.
We use Github Flow, so all code changes happen through pull requests. Pull requests are the best way to propose changes to the codebase.
- Fork the repo and create your branch from
develop
.
# after forking
git clone your-repo-url # for example: git clone https://github.com/your-name/fedsa-website-new.git
git remote rename origin your-username
git remote add origin origin-repo-url # for example https://github.com/fedsa/fedsa-website-new.git
git fetch origin develop:develop
git switch develop # if switch does not work use: git checkout develop
# create your feature branch
git switch -c feature-branch-name # for example 82-add-contributing-md-pointing-to-repo
# again, if switch does not work do: git checkout -b feature-branch-name
# make something!
- Make sure your code lints.
- Issue that pull request!
NOTE: Be sure to merge the latest from "upstream" before making a pull request!