A regular expression pattern to filter branch names.
Only branches that match the pattern will be included in the list.
Examples:
.* - Match all branches (default)feature/.* - Only feature branchesrelease/.* - Only release branches(main|master|develop) - Only main, master, or develop(?!release/).* - All branches except release branchesLeave empty to include all branches.