# Granular branch matching for Git configuration in vercel\.json

**Published:** February 25, 2025 | **Authors:** Tom Knickman

---

Vercel now supports glob patterns (like `testing-*`)  in the `git.deploymentEnabled` field, giving you more control over branch deployments.

Previously, you could disable deployments for specific branches by explicitly naming them. Now, you can use patterns to match multiple branches at once.

For example, the configuration below prevents deployments on Vercel if the branch begins with `internal-`.

**vercel.json**
```json
{
  "git": {
    "deploymentEnabled": {
      "internal-*": false 
    } 
  }
}
```

Learn more about [Git configuration](https://vercel.com/docs/projects/project-configuration/git-configuration#git-configuration).

---

📚 **More updates:** [View all changelog entries](/changelog/sitemap.md) | [Blog](/blog/sitemap.md)