[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live)

[Feedback](/c/feedback/8)

# Vercel not picking up latest GitHub commits

102 views · 0 likes · 4 posts


David Jones (@parenthesesweb1-2378) · 2026-01-16

Been struggling with vercel not picking up commits. ignoring my latest commits and not finding them Even though the github is allowed via github.}


Anshuman Bhardwaj (@anshumanb) · 2026-01-16

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?


Gil (@gils1908) · 2026-02-13

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.


Gil (@gils1908) · 2026-02-13

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