Skip to content

Latest commit

 

History

History
36 lines (20 loc) · 698 Bytes

README.md

File metadata and controls

36 lines (20 loc) · 698 Bytes

WeTrack

This repository will be used as the base repository for our Project: WeTrack.

Guidelines

  1. Clone the repository

git clone

  1. Go to the folder

cd WeTrack

  1. Create a new branch for your particular page

git checkout -b {yourname}/{pagename}

For example : git checkout -b Tarun/Resources

  1. Do your code changes, add and then finally commit the changes!
git add .
git commit -m "Frontend Resource Cards added"    
  1. Push your changes to your branch

git push origin {yourname}/{pagename}

For example : git push origin Tarun/Resources

  1. Create a pull request against Master!

Don't push to master!