Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 815 Bytes

File metadata and controls

43 lines (31 loc) · 815 Bytes

Contributing Steps

  • Fork the repository
  • Clone your forked repository:
git clone https://github.com/<your-github-username>/cpp-sdk-appwrite.git
  • Navigate to the project directory:
cd cpp-sdk-appwrite
  • Install dependencies and build-essentials
sudo apt-get update
sudo apt-get install build-essential clang-format
pip install pre-commit
pre-commit install
  • Create a new branch for your contribution:
git checkout -b feat/<feature-name>
  • Make your changes, squash the commits and commit it with a valid commit message :
git commit -m "feat:added clang-formatter as a precommit"
  • Push your changes to your fork:
git push origin feat/<feature-name>
  • Raise a Pull Request to the develop branch.
  • Get your PR merged! 🚀