Are you a beginner who is looking to contribute to open-source projects π? Then make your first PR from here! π
This repository is for those who are getting started into the open-source world. You can quickly make your first contribution in open-source and get a green square! We will teach you step by step on how to make your first contribution in the open-source world π
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.
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 button. Open the terminal and run the following command:
git clone <paste your url>
cd into your new directory by
cd <repo-name>
Then, create a new branch
git switch -c <New-branch-name>
For example
git switch -c Addname
Make all the necessary changes
You can Add your GitHub username and link to the PROFILES.md
file in the alphabetic order or find typos in the documentation.
In the PROFILES.md
file, do the following
- [GitHub-username](GitHub-link) - <Your Bio>
Add those changes to the branch you just created using the git add
command:
git add PROFILES.MD
Now commit those changes using git commit
command:
git commit -am "Add name to profiles list"
You can push those changes using the git push
command:
git push origin -u <your branch name>
You can find your current branch name that you made in the beginning using the command git branch
If you go to your repository on GitHub, you'll see a Compare & pull request
button. Click on that button.
Then, you can submit the Pull request by clicking the Create pull request
button
Congratulations!! You have successfully created your first PR Congrats! on your first collaboration
Contributions are always welcome!
Please adhere to this project's code of conduct
.