$ 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.
関連用語