我在 .bash_profile
中创建了一个别名alias gco="git checkout origin/${1}"
但每当我尝试调用这样的命令时:
gco master
它回应:
error: pathspec 'origin/' did not match any file(s) known to git.
error: pathspec 'master' did not match any file(s) known to git.
任何人都可以帮助我理解为什么它会返回这些错误,而不仅仅是正确地连接文本?谢谢!