How can i get vercel to deploy latest commit changes without creating new project. #167165
Select Topic AreaQuestion BodyHelp me as soon as possible |
Replies: 2 comments 1 reply
|
Push your changes to your GitHub repo. |
|
Hi @Umohmarvelous. You don't need to create a new project every time. Vercel is built for continuous deployment from existing projects. |
Hi @Umohmarvelous. You don't need to create a new project every time. Vercel is built for continuous deployment from existing projects.
If your Vercel project is already linked to a Git repository, every time you push new commits to the connected branch, Vercel automatically detects those changes and triggers a new deployment for your existing project. If it's not deploying the latest changes, check if your Vercel project is configured to deploy from a different branch than the one you're pushing to, or there might be an issue with the Git connection itself, perhaps due to broken permissions. Sometimes, deployments fail because of build errors, like missing dependencies, syntax issues, or…