Been struggling with vercel not picking up commits. ignoring my latest commits and not finding them Even though the github is allowed via github.}
Hi @parenthesesweb1-2378, welcome to the Vercel Community!
Are you talking about v0 here or the Vercel platform? Can you share when was the last commit you pushed to the main branch? Is the person committing and pushing to GitHub part of your Vercel team?
Seeing the same issue. Github has the latest commit (verified) and manually redeployed on Vercel but it doesn’t seem to pick up the latest version.
fixed it! the problem was that my email for commits was different than my email for Vercel.
Here’s how I fixed it:
set the email for git for the project (this is from the project folder):
git config user.email “your-vercel-email@example.com”
then create an ‘empty’ commit because nothing has really changed:
git commit --allow-empty -m “Force Vercel redeploy”
and push it:
git push origin main
that did the trick