Skip to content

Latest commit

 

History

History
71 lines (58 loc) · 1.18 KB

Contribution.md

File metadata and controls

71 lines (58 loc) · 1.18 KB

Contribution guide

please do add images you will be using to the assets folder on the repository

stacks needed when contributing

  • HTML
  • CSS
  • Javascript
  • git & github

Dont forget to make a pull Request when contributing

Pull Request Process

  1. Fork the Repository
 You will see the fork icon at the top right corner of the repository

2 Clone the Repository

example:
git clone  https://github.com/hassana123/profile-card.git
  1. Make directory into the cloned repository
example:
cd profile-card
  1. Switch branch to a new branch
example:
git checkout -b "new branch name"
  1. Add your profile card
example:
<div class="container">
...................
</div>
  1. Style your profile card
example:
.container{
    background: green;
    color:blue;
    ......
}
  1. Git Add and commit on your terminal
example to add:
git add .

example to commit:

git commit -m "added my profile card"

8 then push to the branch you created

example:
git push --set-upstream origin (new branch name)

9 Lastly go to the forked repo on github and click on the compare and pull button

Happy pulling🤩🙂