Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1001 Bytes

CONTRIBUTING.md

File metadata and controls

45 lines (31 loc) · 1001 Bytes

Contributing

Thank you for your interest in contributing to this project! This document provides guidelines and steps for contributing.

Local Development Setup

  1. Fork the repository
  2. Clone your fork:
git clone https://github.com/YOUR-USERNAME/toolchain.git
cd config
  1. Add the upstream repository:
git remote add upstream https://github.com/anselmes/toolchain.git
  1. Create a new branch for your changes:
git checkout -b feature/your-feature-name

Making Changes

  1. Make your changes in your feature branch
  2. Commit your changes with a clear message
  3. Push to your fork:
git push origin feature/your-feature-name

Submitting Changes

  1. Ensure your changes follow the project's coding standards
  2. Update documentation as needed
  3. Open a Pull Request at: https://github.com/anselmes/toolchain/compare
  4. Describe your changes in the PR description
  5. Wait for review and address any feedback

Thank you for contributing!