🎭 What is Hacktoberfest ?
🏆 🏆 Rewards : 🏆🏆
You get some awesome goodies for FREE! and some stickers.
🤔🤔How can you Join ❔❔
Navigate to the link below 👇 👇 and follow the instructions ✔️ ✔️
https://hacktoberfest.digitalocean.com/register
To add your contributions towards the opensource community and grab the opportunity:smiley: :smiley::smiley:
Then let's start with this repository.
✅ Pull requests can be submitted to any opted-in repository on GitHub or GitLab.
✅ The pull request must contain commits you made yourself.
✅ If a maintainer reports your pull request as 'spam' or 'invalid', it will not be counted toward your participation in Hacktoberfest.
✅ If a maintainer reports behaviour that’s not in line with the project’s code of conduct, you will be ineligible to participate.
✅ To get the swags, you must make four approved pull requests (PRs) on opted-in projects between October 1 and 31 in any time zone.
❌ PRs that are automated (e.g. scripted opening PRs to remove whitespace/optimize images)
❌ PRs that are disruptive (e.g. taking someone else’s branch/commits and making a PR)
❌ PRs that are regarded by a project maintainer as a hindrance vs. helping
❌ Something that’s clearly an attempt to simply 1 your PR count for October
$ git clone https://github.com/your_username/make-pull-request
$ cd <cloned-folder>
$ git remote add upstream https://github.com/Deba951/HacktoberFest_2023.git
It will help you to keep your forked repo updated with the original repo
$ git checkout main
$ git fetch upstream
$ git merge upstream/main
$ git push origin main
$ git checkout -b <feature-branch>
🔺 After making changes or modifications to your code locally, you need to add these files to the staging area.
$ git add --all
$ git commit -m "<your-message>"
$ git push origin <your-created-branch-name>
🔺 Once you push the changes to your repository, the Compare & Pull Request button will appear in GitHub.
🔺 Type a proper description and give the PR an appropriate title. Finally, Open a pull request by clicking the Create pull request button.
NOTE: Make sure to follow the contribution guidelines of the project you're contributing to and adhere to good coding practices. Also, be patient, as maintainers may take some time to review and merge pull requests.
Happy coding !!!!