Namaste:pray:
The open source community provides a great opportunity for aspiring programmers to distinguish themselves; and by contributing to various projects, developers can improve their skills and get inspiration and support from like-minded people. When you contribute to something you already know and love, it can have so much more meaning, because you know how the tool is used and the good it does for you. Being part of an open source community opens you up to a broader range of people to interact with.
Read more about it here.
- You can solve questions put up by contributors.
- You can put up a problem yourself and solve it after getting assigned by the maintainer.
- You can even contribute a project made by you.
- Git and github crash course by TraversyMedia: Youtube
- Git and github for beginners by FreeCodeCamp: Youtube
- Git and github articles on atlassian.com: Website
First let's see when should you create an issue?
- If you want to contribute a question or project.
- If you have a better solution to an existing solved issue.
Link to register: https://hacktoberfest.digitalocean.com/
In order to work on an open-source project, you will first need to make your own copy of the repository. To do this, you should fork the repository and then clone it so that you have a local working copy.
Fork 🍴 this repo. Click on the Fork button at the top right corner.
With the repository forked, you’re ready to clone it so that you have a local working copy of the code base.
Clone the Repository
To make your own local copy of the repository you would like to contribute to, let’s first open up a terminal window.
We’ll use the git clone command along with the URL that points to your fork of the repository.
- Open the Command Prompt/Terminal
- Type this command:
git clone https://github.com/your_username/Ds-Algo-ML
It is important to branch the repository so that you are able to manage the workflow, isolate your code, and control what features make it back to the main branch of the project repository.
When creating a branch, it is very important that you create your new branch off of the master branch. To create a new branch, from your terminal window, follow:
git branch new-branch
git checkout new-branch
Once you enter the git checkout command, you will receive the following output:
Switched to branch 'new-branch'
Make relevant changes.Add new Data Structures Add new Algorithms. Add Readme files. Contribute in any way you feel like :)
Once you have modified an existing file or added a new file to the project, you can add it to your local repository, which we can do with the git add command.
git add filename
or git add .
You can type the command git add -A
or alternatively git add -all
for all new files to be staged.
With our file staged, we’ll want to record the changes that we made to the repository with the git commit
command.
The commit message is an important aspect of your code contribution; it helps the other contributors fully understand the change you have made, why you made it, and how significant it is.
git commit -m "commit message"
At this point you can use the git push
command to push the changes to the current branch of your forked repository:
a)If working without a branch:
git push origin master
b) If working with a branch:
git push --set-upstream origin new-branch
At this point, you are ready to make a pull request to the original repository.
You should navigate to your forked repository, and press the “Compare & pull request”
button on the page.
GitHub will alert you that you are able to merge the two branches because there is no competing code. You should add in a title, a comment, and then press the “Create pull request” button.
You have made it till the end. Kudos to you!!
For any more issues and queries,feel free to reach out to us. Rememeber, collaboration is the key to open-source.
Project Maintainers:
1.
Uddeshya Tyagi💻
About Me
Hi!!!,I am Uddeshya Tyagi a Computer Science undergrad student.I am in love with open-source and its culture so come I with this repository 😊
Let's get connect !!?
2.
Avish Tripathi💻
About Me
Hello!! I am Avish Tripathi an Undergrad student.I would like to contribute on open-source and its culture. 😊