设置git
git config --global alias.<custom_command_name> <commands>
参数
custom_command_name (自定义命令名)
commands (命令行文字)添加!在前,可以使用git以外的命令
可以用 git config 为命令设置别名
$ git config --global alias.last 'log -1 HEAD' $ git config --global alias.visual '!gitk'
Last updated 6 years ago