You can checkout https://hacktoberfest.com for all info on hacktoberfest 2023.
- Star ⭐ this repository
- Follow github if you find this project interesting😁!(optional)
- Fork the repo.
- Clone forked repo in your local machine
- typegit clone https://github.com/<your-user-name>/hacktoberfest2023.git
in your system(local) terminal - Do the Changes
- Add changes
git add .
- Commit changes
git commit -m "your-commit/issue number"
- Push to repo
git push -u origin main
- Create Pull Request - Go to your forked repo, you will see an option to create pull request(mostly in green box). Click on that.
- All Done At this point, you are ready to make a pull request to the original repository.
Navigate to your forked repository, and press the “New pull request” button on your left-hand side of your Repo page.
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/hacktoberfest
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
- Don't Create Pull Request to update "readme.md" File.
- Only valid PRs will be merged.