Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 877 Bytes

CONTRIBUTING.md

File metadata and controls

49 lines (29 loc) · 877 Bytes

Contributing to SanityPress

Thanks for contributing to SanityPress! Here's how to get started:

  1. Fork & Clone the Repo

Fork the repo and clone your fork locally.

git clone https://github.com/your-username/sanitypress.git
  1. Create a Branch

Make a new branch for your changes.

git checkout -b feature-or-bugfix-name
  1. Make Changes

Ensure your code follows existing conventions, is documented, and includes tests (if relevant).

  1. Commit

Write clear commit messages and reference issue numbers.

git commit -m "Brief description of changes"
  1. Push

Push your branch to your fork.

git push origin feature-or-bugfix-name
  1. Submit a PR

Open a pull request to the main branch.

  1. Issues & Bugs

For bugs, open an issue with details. Feature requests are welcome, too.

🖤 Thanks for helping make SanityPress better!