Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 2.06 KB

CONTRIBUTING.md

File metadata and controls

47 lines (31 loc) · 2.06 KB

Contributing to Java Algorithms and Data Structures

Thank you for taking the time to contribute to this project! Here are a few guidelines to help you get started.

How to Contribute

  1. Fork the repository: Click the 'Fork' button at the top right of the repository page to create a copy of the repository in your GitHub account.

  2. Clone the repository: Clone your forked repository to your local machine using the following command:

    git clone https://github.com/your-username/java-alda.git
  3. Create a branch: Create a new branch for your work using the following command:

    git checkout -b your-branch-name
  4. Make your changes: Implement your changes in the new branch. Ensure your code follows the project's coding standards and passes all tests.

  5. Commit your changes: Commit your changes with a meaningful commit message using the following commands:

    git add .
    git commit -m "Description of your changes"
  6. Push your changes: Push your changes to your forked repository using the following command:

    git push origin your-branch-name
  7. Create a pull request: Navigate to the original repository on GitHub and create a pull request from your forked repository. Provide a clear description of your changes and any related issue numbers.

Code of Conduct

This project follows the Contributor Covenant Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to bcexpt1123@gmail.com.

Reporting Issues

If you encounter any issues while using the project, please check if the issue has already been reported. If not, create a new issue with a clear description of the problem, steps to reproduce it, and any relevant information.

Coding Standards

  • Ensure your code is well-documented and follows the project's coding style.
  • Write tests for your code and ensure all tests pass before submitting a pull request.

Thank you for contributing!