hacktoberfest. If you don't know where to start, feel free to watch the videos linked below, and read the contribution rules. Happy Contributing!
P.S. Star⭐️ this repo or follow github if you find this project interesting😁😍!
Here’s what you need to know to participate and complete Hacktoberfest:
-
Register anytime between september 26 and october 31
-
Pull requests can be made in any github or gitlab hosted project that’s participating in hacktoberfest (look for the “hacktoberfest” topic)
-
Project maintainers must accept your pull/merge requests for them to count toward your total
-
Have 4 pull/merge requests accepted between october 1 and october 31 to complete hacktoberfest
- You have to star ⭐ this repository
- Complete the registartion over https://hacktoberfest.com/
- Fork this repository.
- Clone on your local machine.
git clone https://github.com/<your github username>/Blog-website.git
- Navigate to the project directory.
cd Blog-website
- Create a new branch.
git checkout -b my-new-branch
- Add changes (system installation has been explained in README.md with detail
- Add your contribution.
git add .
- Commit your changes.
git commit -m "Relevant message"
- Push your changes.
git push origin my-new-branch
- Create a new pull request from your forked repository.
Congratulations 🎉 you just made a pull request!
An easy way to avoid conflicts is to add an 'upstream' for your git repo, as other PR's may be merged while you're working on your branch/fork.
git remote add upstream https://github.com/Prashant0664/Blog-website.git
You can verify that the new remote has been added by typing
git remote -v
To pull any new changes from your parent repo simply run
git merge upstream/master
⚔️ All contributors who have followed above rules correctly will meet merge pull request successfully.
⚔️ For any further issues, you can contact me in the comments
⚔️ Always make more than 4 total pull requests for hacktoberfest for safer side.