My colleague created a branch. I am trying to checkout to the branch.
git checkout hisName/branchNameWithAHash#Inside
The terminal returns
zsh: no matches found: hisName/branchNameWithAHash#Inside
If I do git branch -r, I can see the remote branch does exist:
origin/HEAD -> origin/master
origin/hisName/branchNameWithAHash#Inside
origin/master
Why am I getting no matches found?