Skip to content

Latest commit

 

History

History
56 lines (47 loc) · 2.24 KB

CONTRIBUTING.md

File metadata and controls

56 lines (47 loc) · 2.24 KB

📚 Instructions

  1. Goto Hacktoberfest site and Sign Up with your Github Account
  2. Goto Contribution Folder.
  3. Create a new folder in your Github username
  4. Goto Bottom of the page, On Commit changes check the checkbox Create a new branch for this commit and start a pull request and Click on Propose File Change Button
  5. On next page click on Create Pull Request
  6. Your Pull Requested will be accepted within an hour
  7. After getting your PR accepted Goto your folder and add the source code of a program coded by yourself
  8. Goto Bottom of the page, On Commit changes check the checkbox Create a new branch for this commit and start a pull request and Click on Propose File Change Button
  9. On next page click on Create Pull Request
  10. Repeat steps 7-9 by adding source code of different programs and Check your Progress in Hacktobefest site

📝 Important Note

🚨 Warning

  • Add genuine Pull Request as given in the Instruction
  • Genuine PR's will be merged to the repo and you will be added as a Contributor in the site
  • Spam PR's requested will not be counted by the Hacktoberfest and will not be merged to repo
  • Follow the Instructions strictly

💻 Getting Started

  • Fork this repo (button on top)
  • Clone on your local machine
git clone https://github.com/IODevelopers/hacktoberfest.git
cd hacktoberfest/contribution
  • Create a new branch
git checkout -b my-new-branch
  • Add your contribution
mkdir your-github-username
cd your-github-username
//Add the source code of your program here
  • Commit and push
git add .
git commit -m "your-commit-msg"
git push origin my-new-branch
  • Create a new pull request from your forked repository