Skip to content

mrigaankzoro/Hacktoberfest24

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hacktoberfest24

Welcome to the Hacktoberfest 2024 repository! 🎉 Follow these steps to make your contribution:

How To Contribute

  1. Fork this repository.

  2. Clone your forked copy of the project.

    git clone --depth 1 https://github.com/<your_name>/Hacktoberfest24.git
  3. Navigate to the project directory 📁.

    cd Hacktoberfest24
  4. Add a reference (remote) to the original repository.

    git remote add upstream https://github.com/mrigaankzoro/Hacktoberfest24.git
  5. Check the remotes for this repository.

    git remote -v
  6. Always take a pull from the upstream repository to keep your master branch up-to-date with the main project (updated repository).

    git pull upstream main
  7. Create a new branch for your changes.

    git checkout -b <your_branch_name>
  8. Perform your desired changes to the code base.

  9. Track your changes ✅.

     git add .
  10. Commit your changes with a relevant message.

    git commit -m "Relevant message"
  11. Push the committed changes in your feature branch to your remote repo.

    git push -u origin <your_branch_name>
  12. To create a pull request, click on "Compare & pull request" in your repository on GitHub. Ensure you compare your feature branch to the desired branch of the repository you're making a PR to.

  13. Add an appropriate title and description to your pull request explaining your changes and efforts.

  14. Click on "Create Pull Request".

Happy coding! 🎉