This is a repo for beginners to experience the path of open source contribution
Fork this repo.
💡 search stackoverflow on how to Fork a repo in github
Clone the repo from your profile
💡 search stackoverflow on how to clone a repo
Now the repo is in your local directory. Open it in a text editor. Go to the blackboard folder and add your name to addName.txt file and save the file.
- Go to the cloned repo using terminal/command prompt.
- Add the change using the command
git add addName.txt
- Commit your changes
git commit -m "commit by <insert your name>" eg: git commit -m "yourname"
- Push to your repo
git push origin main
Now your change is in your repo. Go to the repo in your github account and see if it is there.
Create a pull request to main repo in the organisation's account
💡 google how to create pull request to main repo
Once the maintainer of the main repo accept your PR, Voila its there !