Hi Replit team -
I’m using Replit to build a web app, and I’m running into an issue with how auto-commits are authored.
Currently, when Replit auto-commits changes after generating code, it stages and commits them locally using:
-
Author name: Replit username
-
Author email: no-reply@replit.com (or similar)
This is causing a deployment problem for me on Vercel (Hobby plan). Vercel enforces git author protection on deployments. If a commit author is not recognized as part of the account or organization, the deployment is rejected under the assumption that multiple contributors are working on the repo (which requires upgrading to a Team plan).
I am a solo developer. There are no additional contributors. The only “second author” is Replit’s auto-commit identity.
To work around this, I’ve had to implement a GitHub Action that rewrites commit history and normalizes the author to my personal email before Vercel runs the deployment. It works, but it’s brittle and adds unnecessary complexity to what should be a simple solo workflow.
Requested Feature
It would be extremely helpful if Replit allowed users to configure the git author identity used for auto-commits. For example:
-
Respect local
git config user.nameandgit config user.email -
OR allow configuring commit author in Replit settings
-
OR provide a toggle:
-
“Use Replit author identity”
-
“Use my git config identity”
-
Right now, manually running git config user.name and git config user.email in the shell does not affect the auto-commit identity used by Replit.
Why This Matters
-
Many platforms (Vercel, some CI systems, and certain enterprise setups) enforce author verification.
-
Solo developers on free tiers get blocked from deployment.
-
The current behavior creates friction and unnecessary workarounds.
-
It makes it appear as though multiple contributors are working on the project when that’s not the case.
This would significantly improve compatibility with common deployment workflows while preserving the benefits of Replit’s auto-commit feature.
Thanks for considering this - and happy to provide more detail if helpful.