0
是否有可能做到以下幾點:傳遞參數別名慶典
我想運行以下命令:
push 'foo'
我需要執行:
git commit -m 'foo' && git push origin master && cap production deploy
是否有可能做到以下幾點:傳遞參數別名慶典
我想運行以下命令:
push 'foo'
我需要執行:
git commit -m 'foo' && git push origin master && cap production deploy
你可以使用shell函數而不是別名:
push() {
git commit -m "$1" && git push origin master && cap production deploy
}