Branch “code” not updating

Everytime I pushes the updated code to Vercel I notice that the branch “code” (not sure what it’s called really but it’s not the (main) cause that’s the branch right, but the number or code rather. It stays the same and doesn’t update or match the one that is being sent from my Cursor or GitHub. Does anyone understand what I’m trying to explain here and does anyone please know how I can fix this?

Appreciate it, been trying now for over 5 hours to figure this out and I have yet not found out. Have tried almost everything it feelsj like.

Hi, @olagaa03-2581! Welcome to the Vercel Community. :waving_hand:

It sounds like you’re asking about the commit hash or deployment ID that appears in your Vercel deployments. If it’s not showing up as expected, here are a few things worth checking:

First, let’s look at Git integration issues. Make sure your Vercel project is properly connected to the right GitHub repository. Also, double-check that you’re pushing to the branch Vercel is set up to deploy from (usually main or master). You can verify all of this by heading to your project settings in the Vercel dashboard and looking under the Git section.

A few common fixes might help here too. Try reconnecting your Git integration by disconnecting and reconnecting your repo in the Vercel settings. Confirm that Vercel is watching the correct branch, and if needed, trigger a manual deployment directly from the dashboard. You might also want to clear your local Git cache. You can do that by running git rm -r --cached ., then re-adding and committing your files.

Lastly, make sure your local setup is behaving as expected. Check that your commits are actually making it to GitHub by reviewing your repository’s commit history.

Let us know how you get on!