Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 888 Bytes

CONTRIBUTING.md

File metadata and controls

44 lines (31 loc) · 888 Bytes

5. CONTRIBUTING.md

Guides potential contributors on how to contribute to the project.

# Contributing to ComplexTensor

We welcome contributions to ComplexTensor! To ensure a smooth and efficient collaboration, please follow these guidelines.

## How to Contribute

1. **Fork the Repository**

2. **Clone Your Fork**
   ```bash
   git clone https://github.com/yourusername/ComplexTensor.git
   cd ComplexTensor
  1. Create a Branch

    git checkout -b feature/YourFeature
  2. Make Your Changes

  3. Run Tests Ensure that all existing tests pass and add new tests for your changes.

    python -m unittest discover tests
  4. Commit Your Changes

    git commit -m "Add YourFeature"
  5. Push to Your Fork

    git push origin feature/YourFeature
  6. Open a Pull Request