git checkout -b<sd_6153_update_mapfre_bop_question>
By giving this command to create branch and switch to it, I am getting this o/p.
I don't have idea why this is happening:
zsh: parse error near `\n'
git checkout -b<sd_6153_update_mapfre_bop_question>
By giving this command to create branch and switch to it, I am getting this o/p.
I don't have idea why this is happening:
zsh: parse error near `\n'
On Linux (since zsh is involved):
git switch
instead of git checkout
)That is:
cd /path/to/repository
git switch -c sd_6153_update_mapfre_bop_question
Note: no <
>
, which would not be interpreted correctly by the shell.
Once that is working (confirmed by a git status
), go back to VSCode.