我创建了一个git别名如下,但是当我运行git gbf4364
时,它会抛出一个错误,我错过了什么?
git config --global alias.gbf4364 'git clone ssh://username@gerrit.sd.company.com:29418/projectname'
答案 0 :(得分:4)
USE git config --global alias.gbf4364 'clone ssh://username@gerrit.sd.company.com:29418/projectname'
您不应在别名中添加git
。
否则git gbft4364
等于git git clone ssh://username@gerrit.sd.company.com:29418/projectname
,就会有两个git。
如果要删除别名,请使用git config --global --unset alias.gbft4364