Fix generated branch name requiring quotes in bash by taisph · Pull Request #3084 · microsoft/vscode-pull-request-github (original) (raw)
If an issue name contains parenthesis characters, they are currently
added to the generated branch name, causing bash to complain about the
name if it is not quoted.
I.e. git checkout test/some(other)branch
bash: syntax error near unexpected token `('
Stripping the parenthesis characters from the branch name fixes this.