$ man push
Engineering · Version Control
Push
Sending your local commits to a remote server like GitHub or Vercel.
为什么重要
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.
你怎么用它
git push origin main. Push to main triggers auto-deploys on Vercel. Push to a feature branch creates a preview deployment.
相关术语