A repository to learn about open source code contributions flow
- 🌟 Star this repository☝️😉.
- Fork this repo, read how to fork repo
- 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
- Create branch with your firstName and lastName, ex:
youssouf_elazizi
. Never use themaster
branch to create PR.
git checkout -b <branch-name>
# <branch-name> : ex youssouf_elazizi
- Add your first file
firstName_lastName.yml
(ex:youssouf_elazizi.yml
) on thecontributors/
directory in that branch. - Add code with your infos, ex:
firstName: Youssouf
lastName: El Azizi
bio: Full-stack web developer at Obytes
github: yjose
- Make sure you changes works as expected :
npm install
oryarn
yarn start
ornpm 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.
- 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>
- Create Pull-Request to
master
branch in this repository, read how creating PR - Have fun and welcome to open source world.