# Sync into local repo

From your machine (with this branch checked out in gottoeat):

```bash
cd /home/mikeb/projects/sites/gottoeat
git fetch origin cursor/android-api-shared-orders-21d4
git checkout origin/cursor/android-api-shared-orders-21d4 -- exports/got2eat-android

rsync -a \
  exports/got2eat-android/ \
  /home/mikeb/projects/sites/got2eat-android/ \
  --exclude SYNC.md --exclude .git

cd /home/mikeb/projects/sites/got2eat-android
git add -A
git commit -m "Initial Got 2 Eat Android consumer app scaffold."
git push -u origin main
```
