Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 1.13 KB

README.md

File metadata and controls

58 lines (37 loc) · 1.13 KB

HackRX2022

Give Care 💊🌿

📝 Table of Contents

💊🌿 About

🏃‍♀️🏃 How to run Give Care?

⛏️⛏️ Built Using

👷👷‍♀️ How to contribute?

  • Clone the repository locally using the following command:
git clone https://github.com/felicityy-li/HackRx2022.git
  • When working on a new feature/ bug fix, make sure to get the latest main branch code:
git pull
  • Create a local branch from main branch:
git checkout -b feature-branch-name
  • After work is complete: stage, commit and push the new branch and create a Pull request remotely

stage (to add all the files):

 git add .

commit:

 git commit -m "you message here"

push the local branch:

  git push origin feature-branch-name
  • After the changes are reviewed and accepted, they will be merged into main by reviewer.