background: I have a pipeline job that polls and builds changes from feature branches, requires the branches to be named in a specific format. Couple days ago my job started failing for a branch and I figured out the reason to be case difference, branch was named feature1 instead of Feature1.
I created a new branch from feature1 and called it Feature1 and then made the feature1 branch read only so that there wont be any new commits.
Problem: the new branch Feature1 is also a read-only branch, seems to have inherited the permissions from feature 1 though feature1 branch was made read only after I created Feature1 branch.
1. How do I remove the association between the two branches?
2. How do I stop a branch from inheriting permissions?