git clone https://github.com/Tolulopeelijah/data-structures-and-algorithms-implementation.git
Make Changes Locally: Navigate to the cloned directory using cd:
cd data-structures-and-algorithms-implementation
Now you can edit the code and documentation files using your preferred text editor.
How to contribute
Stage Changes: Add the files you've modified to the staging area using the git add command:
git add .
Commit Changes: Create a commit snapshot with a descriptive message summarizing your changes:
git commit -m "Improved sorting algorithm efficiency"
(Replace the string with a brief of the changes made)
Push Changes: Push your committed changes to your forked repository on the hosting platform:
git push origin main
Create a Pull Request: Go to your forked repository and initiate a pull request to submit the changes made