Skip to content

Latest commit

 

History

History
36 lines (35 loc) · 1.15 KB

File metadata and controls

36 lines (35 loc) · 1.15 KB

Contribution and Add Review - Guidelines

  1. Create a issue with your 'Roll no.' as title and your 'name' in the description.
  2. FORK the repo
  3. Clone your forked repo
  4. Create new Branch
    $ git checkout review/<your-name>
    
  5. Go to /src/review.js you will get a array of objects reviews.
  6. Copy the following object schema and replace the values
    {
        name: "Your Name", //string
        rollno: "Your Roll No.", //string
        rate: rating-Out-Of-5, //number
        review: "Good Workshop", //string
        improvements: [ //Array of Strings
            "improvement 1",
            "improvement 2"
        ],
    },
    
    You can leave the improvements blank like this improvements: [], if you have noting to say.
  7. Add a new object in that reviws array.
  8. $ git add . 
    
  9. $ git commit -m "Add your message"
    
  10. $ git push origin review/<your-name>
    
  11. Go to your git hub and switch to the branch review/<your-name>
  12. Create a pull request with a meaning ful message and adding #<issue number> in the message refering to the issue that you created.