怎么样使用
^(?!.*master).*$
作为分支说明符。此正则表达式表示所有不匹配master的分支。
分解:
^(?!.*master).*$^ ---> beginning of string (?! ) ---> negative lookahead find all that doesnt match .*---> zero or more of 'any' character master ---> should not match master .*$ ---> will match anything to the end of string



