Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 1.05 KB

CONTRIBUTING.md

File metadata and controls

38 lines (25 loc) · 1.05 KB

Contribute

You are freely welcome to send a pull request on any sorting algorithm, typo correction, bug and improve documentation. Your contribution will be highly appreciable 👍. When you want to contribute to this repository then create a another branch and send a new pull request here.

Create an another branch for contribution.

git checkout -b beta

To add your changes to the branch

git add .

Commit a new info or message for your changes

git commit -m 'message or info for your changes'

Push your changes to your remote repository

git push origin beta

Then head towards to your repository in any browser and click on compare and pull requests. Then add a title & description to your pull request that explains what you have done.

Sync of new branch

Sync your beta with master

After sync your main with your remote repo by fetching upstream with this repo then you can switch to beta and merge it.

git merge main