Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 1.11 KB

CONTRIBUTING.md

File metadata and controls

31 lines (25 loc) · 1.11 KB

Contributing to DistributeX

We welcome contributions to DistributeX! Whether you're fixing a bug, improving documentation, or adding a new feature, your help is appreciated.

How to Contribute

  1. Fork the repository: Create your own fork of the project by clicking the "Fork" button on the repository page.

  2. Clone your fork: Clone your fork to your local machine:

    git clone https://github.com/yataknemogy/DistributeX.git
    
  3. Create a new branch: Create a branch for your work:

    git checkout -b feature/my-new-feature
    
  4. Make your changes: Implement your changes in the new branch.

  5. Commit your changes: Ensure your commit messages are descriptive:

    git commit -m "Add feature XYZ"
    
  6. Push your fork: Push the changes to your fork:

    git push origin feature/my-new-feature
    

Code Style

Please ensure your code follows the Go style guide.

Reporting Issues

If you encounter any issues, please open an issue on the repository with a clear description of the problem and steps to reproduce it.