Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1.14 KB

File metadata and controls

48 lines (32 loc) · 1.14 KB

Contributing

We welcome contributions! To get started, please follow these steps:

  1. Fork the repository Click the "Fork" button at the top right of this page to create your own copy of the repository.

  2. Clone your fork

    git clone https://github.com/CodeDragon03/SLATE.git
    
    cd SLATE
  3. Create a new branch Use a descriptive branch name for your feature or bugfix.

    git checkout -b feature/your-feature-name
  4. Make your changes Implement your feature or fix the bug. Add or update tests and documentation as needed.

  5. Commit your changes

    git add --all
    
    git commit -m "Describe your changes"
  6. Push to your fork

    git push origin feature/your-feature-name
  7. Open a Pull Request Go to the original repository and click "New Pull Request". Select your branch and describe your changes.

Contribution Tips:

  • Follow the project's coding style and guidelines.
  • Write clear, concise commit messages.
  • Ensure all tests pass before submitting.
  • Be responsive to feedback on your pull request.