Project of a monitor of important physiological data.
git checkout -b <branch name> # start a new branch
# or you can use the command below if the branch already exists
#git checkout --track origin/<branch name> # enter an already existing branch
git branch # check you are in the right branch
<edit files>
git add <edited file>
git commit -m "message describing what you did!"
git push origin <branch name>
├── README.md <- The top-level README for developers using this project.
│
├── models <- Trained and serialized models, model predictions, or model summaries.
│
├── notebooks <- Jupyter notebooks.
│
└── project <- HTML and CSS files which creates the physiological data monitoring application.