Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Prashant0664/hacktoberfest

Repository files navigation

hacktoberfest-2023

You can checkout https://hacktoberfest.com for all info on hacktoberfest 2023.

Star and fork this repository to start contributing !!

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!


Mandatory Step :

  • You have to star ⭐ this repository
  • Follow github if you find this project interesting😁!(optional)

Steps to Contribute

  1. Fork the repo(You can see fork option at top right of this repo
  2. Clone your forked repository using terminal
    git clone https://github.com/<YOUR USER NAME>/hacktoberfest.git
  3. Make changes like adding files in your clonned repo
  4. Add the changes
    git add .
  5. Commit the changes
     git commit -m "<any commit name>"
  6. Push to repository
    git push -u origin main
  7. 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.


Avoid Conflicts {Syncing your fork}

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

Note:

  1. Don't Create Pull Request to update "readme.md" File.
  2. Upload or Create File in Specified Language Folder.
  3. If Specified Language Folder not Found then Create Folder and then Upload or Create File.
  4. Please mention the extention of files while creating them (e.g if file is of java language create file named "xyz.java").

Our Contributors of hacktoberfest