Skip to content

Latest commit

 

History

History
73 lines (45 loc) · 1.09 KB

File metadata and controls

73 lines (45 loc) · 1.09 KB

🤝 Contribution Guide

Thank you for considering contributing to this project! Follow the steps below to get started:


1. Fork the repository

  • Go to the original repository on GitHub
  • Click the "Fork" button in the top-right corner
  • This will create a copy of the repository in your account

2. Clone the repository

Clone your fork to your local machine:

git clone https://github.com/discloud/cli-dart.git
cd cli-dart

3. Create a new branch

Create a branch for your contribution:

git checkout -b my-feature

4. Make your changes

  • Edit the necessary files
  • Add new features or fix bugs

5. Stage and commit your changes

git add .
git commit -m "feat: clearly describe your change"

6. Push your branch to GitHub

git push origin my-feature

7. Open a Pull Request

  • Go to your fork on GitHub
  • Click "Compare & pull request"
  • Clearly describe your changes
  • Submit the Pull Request for review

✅ Done

Now just wait for feedback from the maintainers 🚀