Use this project to make your first contribution to an open source project on GitHub. Practice making your first pull request to a public repository before doing the real thing!
Celebrate Hacktoberfest by getting involved in the open source community by completing some simple tasks in this project.
https://github.com/GDSC-TMSL/ProjectAlgorithms/
A month-long celebration from October 1st - 31st sponsored by Digital Ocean and GitHub to get people involved in Open Source. Create your very first pull request to any public repository on GitHub and contribute to the open source developer community.
https://hacktoberfest.digitalocean.com/
A place where you can find solutions to the most asked interview questions.
You can contribute by adding new questions and their solutions to the repository.
- Check if the question your adding already exists.
- If not, then go to issues and see if someone has added an issue raising the same issue.
- If you see that no such issue exists then make a new issue. Make sure to mention which questions your adding and the links to Your solutions.
- After having the new issue has been assigned to you, start working on the same. Make sure to follow the rules after this section. Maintain the structure of the repository. If the structure is not maintained then the PR might not be accepted.
- Send a PR. Do mention which Issue you solved by referencing it with a # and then typing the name of your issue.
- Make the steps below to get more details and a walkthrough of the PR process.
Here are 3 quick and painless steps to contribute to this project:
- Make a new issue under (check if the same issue is open before checking that).
- Wait for you to be assingned the issue.
- Once assingned, you can make the changes you need and send a PR this way. After reviewing of the code, we will merge it.
- Fork this repository (Click the Fork button in the top right of this page, click your Profile Image)
- Clone your fork down to your local machine
git clone https://github.com/your-username/ProjectAlgorithms.git
- Create a branch
git checkout -b branch-name
- Make your changes (choose from any task below)
- Commit and push
git add .
git commit -m 'Commit message'
git push origin branch-name
- Create a new pull request from your forked repository (Click the
New Pull Request
button located at the top of your repo) - Wait for your PR review and merge approval!
- Star this repository if you had fun!
Usually when you feel the project is missing something, you want to add some feature.
#### How to make a good issue.
- Identify the problem.
- See if a same issue has already been created.
- Issue Name: Make a apt but compact name.
- Issue Desription: Why did you make this issue? What was the repo missing.
- Finally: How did you fix the issue.
When making a branch with git checkout -b "new-branch"
, keep these things in mind.
# Branch Name
Name the branch something short but apt. It cannot have spaces.
Let your inner code show its colours. Do keep these in mind.
# Commit messages
The commit messages must be a small description of what you are trying to fix, add or remove. Its usually around 5-15 words.