Purpose: Update your local ballpark clone to the latest version.
You must be in: ~/GitHub/econ-ark/ballpark
Run this now:
cd ~/GitHub/econ-ark/ballpark && pwd
Expected output: /home/.../GitHub/econ-ark/ballpark or /Users/.../GitHub/econ-ark/ballpark
Do not proceed until you see this output.
Run:
echo $HOME
Expected: /home/... (Linux/WSL) or /Users/... (Mac)
If you see C:\...: You’re in Windows context. See verify terminal context.
Run:
ls ~/GitHub/econ-ark/ballpark
Expected: List of files including README.md, models/, etc.
If “No such file or directory”: You need to clone ballpark first:
mkdir -p ~/GitHub/econ-ark
cd ~/GitHub/econ-ark
git clone https://github.com/econ-ark/ballpark.git
Once all verifications pass:
cd ~/GitHub/econ-ark/ballpark
git fetch origin
git pull origin master
git log -1 --oneline
Expected: Shows the most recent commit (should be recent if updates were pulled).