Skip to content

Latest commit

 

History

History
63 lines (36 loc) · 1.74 KB

CONTRIBUTING.md

File metadata and controls

63 lines (36 loc) · 1.74 KB

How to Contribute

Your code must print this array [21, 50, 12, 31, 61, 40, 30] and print the result after bubble sorting.

If you want to contribute to this project, follow the steps below.

Star this repository

Star the repository by clicking the star button at the top of this page.

Fork this repository

Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.

Clone the repository

Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon.

Open a terminal and run the following git command:

git clone https://github.com/tarithj/BubbleSortInEveryLang.git

Make necessary changes and commit those changes

Now open the project in a text editor, make necessary changes to project and then save the changes

If you go to the project directory and execute the command git status, you'll see there are changes.

Add those changes to the main branch using the git add command:

git add .

git add . will add all the changes

Now commit those changes using the git commit command:

git commit -m "<message>"

replacing <message> with a short message related to the changes you have made.

Push changes to GitHub

Push your changes using the command git push:

git push

Submit your changes for review

If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button.

Add Title and description related to the issue that you have solved or changes you have made. Now submit the pull request.

Congrats! You just made your first pull request and contributed to the project