标签: bash alias
是否可以执行以下操作:
我想运行以下内容:
push 'foo'
我需要执行:
git commit -m 'foo' && git push origin master && cap production deploy
答案 0 :(得分:1)
您可以使用shell函数而不是别名:
push() { git commit -m "$1" && git push origin master && cap production deploy }