https://github.com/maximizeit/dhc18
https://github.com/maximizeit/dhc18
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/maximizeit/dhc18
- Owner: maximizeIT
- Created: 2018-03-02T20:11:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-04T13:25:12.000Z (over 8 years ago)
- Last Synced: 2025-01-23T06:14:21.683Z (over 1 year ago)
- Language: CSS
- Size: 32.7 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TUC @ Digitial Health Challenge 2018 (DHC18)
Clone repository into desired folder. Or download zip file.
```
git clone git@github.com:maximizeIT/dhc18.git
```
Navigate to directory:
```
cd dhc18
```
## Live deploy on Heroku App Platform
```
https://dhc18.herokuapp.com/
```
## Important git commands
1) Check local changes.
```
git status
```
2) Add all locally modified files to next commit.
```
git add *
```
3) Make commit with locally modified and added files.
```
git commit -m "blablabla"
```
4) Push locally modified, added and committed files.
```
git push
```
Retrieve list of online available commits/updates.
```
git fetch
```
Pull latest version from repository.
```
git pull --rebase
```