Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 2.13 KB

Contributing.md

File metadata and controls

53 lines (33 loc) · 2.13 KB

Contribution Guidelines

Thank you for considering contributing to the "Data Structures and Algorithms" repository! We welcome contributions from the community to help improve and expand our collection of data structures and algorithms implementations.

Please take a moment to review these guidelines before getting started:

Code of Conduct

Before contributing, please read and adhere to the Code of Conduct. We expect all contributors to follow these guidelines to ensure a positive and inclusive community.

How to Contribute

  1. Fork the repository to your own GitHub account.

  2. Clone the repository from your account to your local machine:

git clone https://github.com/your-username/DataStructures-And-Algorithm.git
  1. Create a new branch for your work:
git checkout -b your-branch-name
  1. Make sure the branch is up to date with the master branch of the base repository.

  2. Add codes, or make suitable changes in this branch.

  3. After you have made your additions, execute the following lines from the terminal.

$ git add -A

$ git commit -m "What you have changed write here"

$ git fetch --all --prune

$ git push -u origin master
  1. Once the changes have been committed, your are all set for creating a pull request.

  2. Create a pull request from this branch to the master branch of the root directory, and request any one of the assigned reviewers to review your changes.

  3. The PR will be merged once the changes get approved.

Conclusion

Your contributions to the "Data Structures and Algorithms" repository are highly appreciated. By following these guidelines and collaborating with our community, you are helping us build a valuable resource for developers and learners alike. Together, we can make this repository a hub for quality implementations and explanations of various data structures and algorithms.

Thank you for your dedication to improving this project. Your efforts are instrumental in making "Data Structures and Algorithms" a valuable resource for the programming community.

Happy coding!!