Unable to Deploy Updates for project on Vercel

Hello Vercel Support,

I am experiencing an issue with deploying updates for my project “conference-app” on Vercel. The project is connected to my Vercel account, but new updates are not being deployed. When I try to manually deploy, I receive the following error:

“Deployment request did not have a git author with access to the project on Vercel.”

I am an admin in the GitHub repository, and the project is already listed in my Vercel account. However, I am unable to push new updates.

Attached is a screenshot of the error for reference. Could you please help me resolve this issue?

Thank you.

Best regards,

This error occurs when the Git commit author’s email doesn’t match any team member with access to the Vercel project.

Can you verify that your git configuration email matches your Vercel account email?

git config user.email

If it doesn’t match, update it with:

git config user.email "your-vercel-email@example.com"
3 Likes