Collaboration is key in successful development projects, and Vercel offers robust features to enhance collaboration among developers. From seamless code collaboration to real-time previews with Comments, Vercel empowers your team to work together effortlessly.
Now that your project is publicly available on your domain of choice, it’s time to begin making changes to it. With Vercel's automatic deployments, this won't require any extra effort. By default, when your Vercel project is connected to a Git repository, Vercel will deploy every commit that is pushed to the Git repository, regardless of which branch you're pushing it to.
main
or development branch of your Git repository. A preview environment is created when you deploy from any other branch.Vercel provides a URL that reflects the latest pushes to that branch. You can find this either on your dashboard, or in a pull request, which you'll see in the next step
This connection was established for you automatically, so all you have to do is push commits, and you will start receiving links to deployments right on your Git provider.
Create a new branch in your project and make some changes
Commit those changes and create a pull request. After a few seconds, Vercel picks up the changes and starts to build and deploy your project. You can see the status of the build through the bot comment made on your PR:


Select Inspect to explore the build within your dashboard. You can see the build is within the preview environment and additional information about the deployment including: build information, a deployment summary, checks, and domain assignment. These happen for every deployment


Return to your pull request. At this point your build should be deployed and you can select Visit Preview. You can now see your changes and share this preview URL with others.
Comments provide a way for your team or friends to give direct feedback on preview deployments. Share with others by doing the following:
Open the preview deployment that you’d like to share by selecting the Domain from the deployment information as shown in step 3 above. Alternatively, you can find it by selecting your project from the dashboard, and selecting the most recent commit under Active Branches:


From the Comments toolbar at the bottom of the screen, select Log in to comment and sign in with your Vercel account.
Click the share button on the Comments toolbar, and then on the Share Latest Preview dialog, select Anyone with the link.


The person you are sharing the preview with needs to have a Vercel account. To do so, they’ll need to select Log in to comment and then enter their email address.
Once going through the security options, they’ll be ready to comment. You'll be notified of new comments through email, or when you visit the deployment.
For more information on using Comments, see Using comments.
Was this helpful?