Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 852 Bytes

CONTRIBUTING.md

File metadata and controls

38 lines (26 loc) · 852 Bytes

Contributing

Thank you for taking the time to contribute! 🎉

Guidelines

By participating, you are expected to follow this Code of Conduct.

You can open an issue which will be reviewed as soon as possible, or follow the steps below to create a PR.

How to

  1. Fork the repository.
  2. Clone the forked repository to your machine and change it to your working directory.
  3. Create a branch.
git checkout -b <yourbranchname>

Example:

git checkout -b add-link-foo
  1. Commit and push your changes.
git push origin <yourbranchname>

Example:

git push origin add-link-foo
  1. Open a pull request by clicking on the Compare & pull request button you'll see on the remote repository.
  2. Your changes will be merged into the main branch as soon as possible.