Skip to content

geeksblabla/devc-casa-hacktoberfest

Repository files navigation

Hacktober

GitHub GitHub GitHub


A repository to learn about open source code contributions flow

🔥 How to contribute 🔥

  1. 🌟 Star this repository☝️😉.
  2. Fork this repo, read how to fork repo
  3. Clone the project to your local machine
git clone https://github.com/this-is-you/devc-casa-hacktoberfest.git

#where this-is-you is your GitHub username
  1. Create branch with your firstName and lastName, ex: youssouf_elazizi. Never use the master branch to create PR.
  git checkout -b <branch-name>
# <branch-name> : ex youssouf_elazizi
  1. Add your first file firstName_lastName.yml (ex:youssouf_elazizi.yml) on the contributors/ directory in that branch.
  2. Add code with your infos, ex:
firstName: Youssouf
lastName: El Azizi
bio: Full-stack web developer at Obytes
github: yjose
  1. Make sure you changes works as expected :
  • npm install or yarn
  • yarn start or npm run start
  • Your site is now running at http://localhost:8000!
  • Check the site and Make sure your name and profile avatar is on the list.
  1. Commit changes and push
git add <path-to-the-yaml-file>

#Now commit those changes using the git commit command:
git commit -m "Add <your-name> to Contributors list"
#replacing <your-name> with your name.

#push

git push origin <branch-name>
  1. Create Pull-Request to master branch in this repository, read how creating PR
  2. Have fun and welcome to open source world.

Credits