基本的git bash别名配置

时间:2013-11-25 23:17:26

标签: git

我对Git很陌生并且无法设置基本别名。

当我在.gitconfig文件中设置别名

[alias]
    tech="cd c:/wamp/www/technology/"

然后尝试拨打git tech

我收到以下错误

Expansion of alias 'tech' failed; 'cd' is not a git command

感谢您的任何见解。

1 个答案:

答案 0 :(得分:3)

这听起来像是一个shell别名而不是git别名。

您希望在~/.bashrc(或类似,具体取决于您的shell)中进行设置。但是,在bash中,它将是:

alias tech="cd c:/wamp/www/technology"