Kithackclub / Hacktoberfest

Giving to Open Source
https://hacktoberfest.digitalocean.com/
0 stars 16 forks source link
hacktoberfest hacktoberfest-accepted hacktoberfest2021

Welcome to Hacktoberfest

Prepare and share your project for collaboration Contribute to the betterment of a project via pull requests Organize an event Mentor others Donate directly to open source projects

Hacktoberfest Practice Pull Requests

Repo for you to raise a Pull Request for practice.

Just add your name to the alphabetical list and optionally, a link to your GitHub account (In alphabetical order below your letter too)

How to contribute (overall process)

  1. Fork the project, using the gray Fork button in the top right of this page
  2. Make any changes in your forked repo
  3. On this repo, click Pull Requests (which is the third option at the top of this page after the options Code and Issues) and raise a Pull Request by clicking the green New Pull Request button and selecting your fork from the right drop down field.

Questions can be asked by raising an Issue.

How to clone repo and make changes locally after forking

  git clone https://github.com/yourGithubUsername/hacktoberfest-practice.git
  cd hacktoberfest-practice
  git checkout -b <name-of-new-branch>
  git add README.md

or

  git add .
  git commit -m "Add <your-github-username>"
  git status
On branch <name-of-your-branch>
nothing to commit, working tree clean
  git push origin <name-of-your-branch>

or

  git branch -M main
  git push -u origin main

In case you get an error message like the one below, its likely you forgot to fork the repo before cloning it. To fix this, its best to start over with the How to Contribute section above, and fork the project repo first.

ERROR: Permission to EddieHubCommunity/hacktoberfest-practice.git denied to <your-github-username>.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.

Hurray! You successfully made a contribution! 🎉


What if I have a Conflict?

A GitHub conflict is when people make changes to the same area or line in a file. This must be fixed before it is merged in order to prevent collision in the main branch.


Hacktoberfest community