Lots of students struggle in creating their first PR. They try somewhat and leave when couldn't. We created this as learning repo on how to create successful pull requests on languages like JAVA, Python, C++, HTML/CSS.
You can look at the issues here and choose which one you would like to work on! Do check the Contributing.md so that you don't face any troubles.
How to register, some important rules to follow
-we have to add dsa alogrithms to this repo make awesome and collection all algorithms
Open source is changing the world- one pull request at a time. Hactoberfest encourages participation in open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt.
This Repository consists of following programming languages
Go to Git Bash and Clone the forked repository using :
a. Clone the repository
git clone https://github.com/your_username/make-pull-request
After making changes or modification on to your code locally, you need to add these files to the staging area.
git add <file-name>
Once files added, you need to commit the changes to with an appropriate commit message.
git commit -m "<your-message>"
After commiting the changes, you need to push the changes
git push origin <branch-name>
Once you push the changes to your repository, the Compare & pull request button will appear in GitHub.
Click it and you'll be taken to this screen
Type a proper description and give the PR an appropriate title. Finally, Open a pull request by clicking the Create pull request button.
That's it. You have opened a PR. Wait for it to get merged.