You can checkout https://hacktoberfest.com for all info on hacktoberfest 2023.
Make your first PR! Add your profile, a blog, or any program under any language (hello-world program to anything) or update the existing one. Just make sure to add the file under the correct directory. Happy Coding!
- You have to star ⭐ this repository
- Follow github if you find this project interesting😁!(optional)
- Fork the repo(You can see fork option at top right of this repo
- Clone your forked repository using terminal
git clone https://github.com/<YOUR USER NAME>/hacktoberfest.git
- Make changes like adding files in your clonned repo
- Add the changes
git add .
- Commit the changes
git commit -m "<any commit name>"
- Push to repository
git push -u origin main
- Create Pull Request
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/main
- Don't Create Pull Request to update "readme.md" File.
- Upload or Create File in Specified Language Folder.
- If Specified Language Folder not Found then Create Folder and then Upload or Create File.
- Please mention the extention of files while creating them (e.g if file is of java language create file named "xyz.java").