Open source #43216
-
|
Hey ! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
|
Some things that you can do are: Find a project that you are interested in and start contributing to it. Many open-source projects have a list of "good first issues" that are suitable for new contributors. Join an open-source community (GitHub, Reddit, and Stack Exchange.) Start your own open-source project. Learn about open-source licenses and how to use them. Understanding open-source licenses will help you ensure that you are using open-source software legally and appropriately. Attend open-source events or conferences. There are many conferences and meetups that focus on open-source, and these can be a great way to learn more and meet other people in the community. |
Beta Was this translation helpful? Give feedback.
-
|
Have a good and personalized README.md On youtube, follow Kunal Kushwaha , Eddie and other Open Source guys at Twitter. Try to get badges Do it daily with consistency , and you will love the process. To make PR, you can follow these steps: NOTE: You cant override/change somebody's else code directly. So if you want to contribute to them i.e want to change and make the head of that repository guy, you have to keep a Pull Request with your changes. So What is Pull Request (PR) ?? Fork the main project. Fork makes a copy of that into your account. In your repos, you can see the forked repo, so now you have to Clone that repo. Copy the url which you find on clicking the code (green button) on your forked repo. Go to your desktop and open a terminal/git bash. Type :- git clone url . Then press enter. Go to the project directory. Open a new termianal. Create a new branch by typing: Make the changes in the files in which you want. Now press git status. You can see the files which have been modified in red color. Now we have to add them. so type: git add . Now we have to make commit (meaning its like taking a photograph of the relatives standing on the stage) by typing:- Now we have to push these modified files to your repo by typing: Open the forked repo, you can see a pull request green button displayed on the screen. Click on that and you will be redirected to the head repository. Now Write the description of those changes in that dialog box and click on Pull Request. Huraah , you made your pr successfully 🥳🥳🥳 To learn more about GitHub and Open Source, you can follow me and ask. All the best. |
Beta Was this translation helpful? Give feedback.
Have a good and personalized README.md
Visit Eddie Jaoude course for README customization.
On youtube, follow Kunal Kushwaha , Eddie and other Open Source guys at Twitter.
Most of your answers are on Twitter daily
Join communities, start looking issues where ever your understanding is fitting
Try to get badges
Use emojis to clarify tone. Compare “Looks good :)” or “Looks good! 👍 ” with “It’s fine.”
Commit small changes
Good commit messages describing what the commit is for
Do it daily with consistency , and you will love the process.
To make PR, you can follow these steps:
NOTE: You cant override/change somebody's else code directly. So if you want to contribute to them i.e want to change…