This repository aims to help beginners create their first successful pull request and start contributing to the Open Source community. 🥳
⭐ Feel free to 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 diving into the real thing!
This repository is open for all members of the GitHub community. Any member can contribute to this project!
1. Contribute an interesting program using any programming language.
2. The program should be executable with no errors along with proper documentation for the same.
3. Create a directory for the programming language you are using. (Note: Do not create a new directory if it already exists)
5. Writing the author's name and date on which code was modified is a must (prefer multiline comments in your code).
6. Filename should be meaningful.
7. Don't spam otherwise it will be rejected immediately.
8. Try to bring in as many creative programs.
9. Basic programs may not be accepted.
Remember this is not a DSA Repository....
git clone https://github.com/<your-github-username>/Hactoberfest-2022-Beginners
- Navigate to the project directory.
cd Hactoberfest-2022-Beginners
- Create a new branch.
git checkout -b <your_branch_name>
-
Make changes.
-
Stage your changes and commit
git add -A
git commit -m "<your_commit_message>"
- Push your local commits to the remote repo.
git push -u origin <your_branch_name>
-
Create a Pull Request.
-
Congratulations! 🎉 you've made your contribution, and it would be accepted very soon.