#### Push local files to remote

```
git add .
git commit -m "what u wanna say"
git push origin
```

#### Force pull remote files to local

```
git fetch --all
git reset --hard origin
git pull origin
```
