如何将'git checkout'别名为'git co'


Answers:


279

命令:

git config --global alias.co checkout

将创建一个git别名来做到这一点。它将以下条目添加到您的全局~/.gitconfig文件中:

[alias]
    co = checkout

19

另外,可以将其编辑到您的git配置中:

[alias]
   co = checkout

3
您无需执行'!git'。您可以只使用'co = checkout'。这样可以防止在另一个进程下重新调用git ...在启动新进程非常昂贵的Windows上可能是有利的。
John Szakmeister 2013年

5
对于不知道git config在哪里的人:vi〜/ .gitconfig或git config --global -e
fangzhzh 2014年

0

简单地添加一些注释,bash别名用于设置命令的别名,而co或checkout是命令git的参数或标志,因此它将不起作用。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.