$ man push
Engineering · Version Control
Push
Sending your local commits to a remote server like GitHub or Vercel.
why it matters
Your code isn't backed up until you push. Your team can't see it until you push. Automated deployments don't trigger until you push. Local commits are invisible.
how you use it
git push origin main. Push to main triggers auto-deploys on Vercel. Push to a feature branch creates a preview deployment.
related terms